

/* ========== Banner轮播样式 ========== */
.banner-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}
/* 三张Banner背景渐变（科技蓝风格，可替换为实际图片） */
.banner-slide-1 .banner-bg {
    background: url("../picture/banner1.jpg") center / cover no-repeat;
}
.banner-slide-2 .banner-bg {
   background: url("../picture/banner2.jpg") center / cover no-repeat;
}
.banner-slide-3 .banner-bg {
      background: url("../picture/banner3.jpg") center / cover no-repeat;
}
.swiper-slide-active .banner-bg {
    transform: scale(1);
}

/* ====================== 新增：第一张科技光学装饰样式 ====================== */
.banner-tech-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* 背景之上，文字之下 */
    pointer-events: none; /* 不阻挡鼠标点击 */
}
/* 斜向光束线条 */
.banner-tech-decor .tech-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0,180,255,0.45), transparent);
    height: 1px;
    width: 45%;
    animation: lineFlow 8s linear infinite;
    box-shadow: 0 0 8px rgba(0, 180, 255, 0.35);
}
.banner-tech-decor .line-1 {
    top: 25%;
    left: -10%;
    transform: rotate(20deg);
    animation-delay: 0s;
}
.banner-tech-decor .line-2 {
    top: 45%;
    right: -10%;
    transform: rotate(-18deg);
    animation-delay: 2s;
}
.banner-tech-decor .line-3 {
    top: 65%;
    left: 15%;
    width: 30%;
    transform: rotate(12deg);
    animation-delay: 4s;
}

/* 光学网格纹理 模拟镜片光路 */
.banner-tech-decor .tech-grid {
    position: absolute;
    width: 700px;
    height: 700px;
    right: -200px;
    top: -150px;
    border: 1px solid rgba(0,168,255,0.12);
    border-radius: 50%;
    background-image: 
        linear-gradient(rgba(0, 168, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 168, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: slowRotate 35s linear infinite, gridPulse 8s ease-in-out infinite;
}

/* 曲面光路弧线 贴合镜片造型 */
.banner-tech-decor .tech-arc {
    position: absolute;
    width: 900px;
    height: 900px;
    right: -350px;
    bottom: -400px;
    border: 1px solid rgba(80,190,255,0.2);
    border-radius: 50%;
    border-left-color: transparent;
    border-bottom-color: transparent;
    animation: arcPulse 6s ease-in-out infinite alternate;
}

/* 光点，模拟镜片反光、光源点（防蓝光光束效果） */
.banner-tech-decor .tech-dot {
    position: absolute;
    border-radius: 50%;
    background: #73d0ff;
    box-shadow: 0 0 12px 4px rgba(0,170,255,0.6);
    animation: dotTwinkle 4s ease-in-out infinite alternate;
}
.banner-tech-decor .dot1 {
    width: 4px;
    height: 4px;
    top: 20%;
    right: 30%;
    animation-delay: 0s;
}
.banner-tech-decor .dot2 {
    width: 6px;
    height: 6px;
    top: 55%;
    right: 22%;
    animation-delay: 1s;
}
.banner-tech-decor .dot3 {
    width: 3px;
    height: 3px;
    top: 35%;
    left: 45%;
    animation-delay: 2s;
}
.banner-tech-decor .dot4 {
    width: 5px;
    height: 5px;
    top: 72%;
    left: 60%;
    animation-delay: 3s;
}

/* 动画定义 */
@keyframes lineFlow {
    0% { opacity: 0; transform: translateX(-80px) rotate(20deg); }
    40% { opacity: 1; }
    100% { opacity: 0; transform: translateX(180px) rotate(20deg); }
}
@keyframes slowRotate {
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}
@keyframes arcPulse {
    from { opacity:0.2; }
    to { opacity:0.6; }
}
@keyframes dotTwinkle {
    from { opacity:0.4; transform: scale(0.8); }
    to { opacity:1; transform: scale(1.3); }
}
@keyframes gridPulse {
    0%,100% { opacity: 0.35; }
    50% { opacity: 0.7; }
}
/* ============================================== */

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.banner-title {
    font-size:42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateX(-60px);
    animation: bannerFadeIn 0.8s ease forwards;
    animation-delay: 0.3s;
    letter-spacing: 2px;
    color:#ffffff;
}
.banner-subtitle {
    font-size: 30px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateX(-60px);
    animation: bannerFadeIn 0.8s ease forwards;
    animation-delay: 0.5s;
    color: rgba(255,255,255,0.82);
   /* max-width: 600px;*/
}
/* 新增英文翻译样式 优化排版 */
.banner-sub-en{
    font-size: 17px;
    font-weight: 300;
    line-height: 1.35;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateX(-60px);
    animation: bannerFadeIn 0.8s ease forwards;
    animation-delay: 0.65s;
    color: rgba(255,255,255,0.62);
    max-width: 620px;
    letter-spacing: 0.3px;
}
.banner-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #143d9a;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    opacity: 0;
    transform: translateX(-60px);
    animation: bannerFadeIn 0.8s ease forwards;
    animation-delay: 0.85s;
    transition: all 0.3s ease;
    width: fit-content;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}
/* 按钮新增流光特效 */
.banner-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,0.25),transparent);
    transition: left 0.5s ease;
}
.banner-btn:hover::before{
    left:100%;
}
.banner-btn:hover {
    background: #0091ea;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,168,255,0.35);
}
@keyframes bannerFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ====================== 往复扫动蓝光光束 光线穿透镜片效果 ====================== */
.blue-light-sweep {
    position: absolute;
    top: 0;
    left: -20%;
    width: 140%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 170, 255, 0.10) 35%,
        rgba(40, 190, 255, 0.20) 50%,
        rgba(0, 170, 255, 0.10) 65%,
        transparent 100%
    );
    transform: skewX(-8deg);
    pointer-events: none;
    animation: blueSweepLoop 12s ease-in-out infinite alternate;
}

/* 来回往复动画 alternate 实现：左→右 → 右→左 循环 */
@keyframes blueSweepLoop {
    0% {
        transform: translateX(-100%) skewX(-8deg);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) skewX(-8deg);
        opacity: 0;
    }
}

/* 响应式适配 */
@media screen and (max-width: 992px) {
    .banner-title {
        font-size: 36px;
        margin-bottom:20px;
    }
    .banner-subtitle {
        font-size: 16px;
    }
    .banner-sub-en{
        font-size:13px;
    }
    .banner-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    /* 移动端缩小装饰，避免杂乱 */
    .banner-tech-decor .tech-grid{
        width:450px;
        height:450px;
        right:-250px;
    }
    .banner-tech-decor .tech-arc{
        width:600px;
        height:600px;
    }
}
@media screen and (max-width: 768px) {
    .banner-content {
        padding: 0 20px;
        text-align: center;
        align-items: center;
    }
    .banner-title {
        font-size: 28px;
        margin-bottom:18px;
    }
    .banner-subtitle {
        font-size: 14px;
        margin-bottom:8px;
    }
    .banner-sub-en{
        font-size:12px;
        margin-bottom:28px;
    }
    /* 移动端弱化装饰线条，防止干扰文字 */
    .banner-tech-decor .tech-line{
        opacity:0.4;
    }
}
@media screen and (max-width: 480px) {
    .banner-title {
        font-size: 22px;
        margin-bottom:16px;
    }
    .banner-subtitle {
        font-size: 13px;
    }
    .banner-sub-en{
        font-size:11px;
        margin-bottom:24px;
    }
    .banner-btn {
        padding: 10px 24px;
    }
    /* 小屏隐藏大面积网格，保证简洁 */
    .banner-tech-decor .tech-grid{
        display:none;
    }
}





/* pre css */
#c_grid-116273709439191 .p_gridbox::after {
	content: '';
	clear: left;
	display: block
}
#c_grid-116273709439191 > div > .p_gridbox {
	width: 100%;
	overflow: hidden;
	position: static
}
#c_grid-116273709439191 > div > .p_gridCell {
	float: left;
	position: static
}
#c_grid-116273709439191 > .p_gridbox.signal {
	min-height: inherit
}
#c_grid-116273709439191 > .p_gridbox.signal > .p_gridCell {
	min-height: inherit !important
}
#c_grid-116273709439191 {
	margin-left: auto;
	margin-right: auto;
	width: 100%
}
@media screen and (max-width:768px) {
#c_grid-116273709439191 > .p_gridbox > .p_gridCell:nth-child(1n + 1) {
	width: 99%;
	margin-left: 0.5%;
	margin-right: 0.5%;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	clear: left
}
}
@media screen and (min-width: 769px) {
#c_grid-116273709439191 > .p_gridbox > .p_gridCell:nth-child(1n + 1) {
	width: 100%;
	margin-left: 0%;
	margin-right: 0%;
	margin-top: 0rem;
	margin-bottom: 0rem;
	clear: left
}
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
#c_grid-116273709439191 > .p_gridbox > .p_gridCell:nth-child(1n + 1) {
	width: 99%;
	margin-left: 0.5%;
	margin-right: 0.5%;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	clear: left
}
}
@font-face {
	font-family: "eometos";
	src: url(../font/geometos.ttf)
}
@font-face {
	font-family: "poppins-bold";
	src: url(../font/poppins-bold.ttf)
}
@font-face {
	font-family: "poppins-light";
	src: url(../font/poppins-light.ttf)
}
@font-face {
	font-family: "Poppins";
	src: url(../font/poppins.ttf)
}
#c_navigation_0061635239687823 {
	min-height: 0px;
	background: rgba(255,255,255,0.2);
	padding-top: 0px;
	padding-bottom: 0px;
	width: 100%;
	border-bottom: 1px solid rgba(255,255,255,.2);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	transition: all .5s ease;
	background_radio: 2;
	display-radio: 1;
	background-color:#003893
}
html {
	overflow-x: hidden !important;
	word-break: break-word !important
}
body {
	overflow-x: hidden !important;
	word-break: break-word !important
}
#c_navigation_0061635239687823.active {
	background: #fff;
	box-shadow: 0 0 15px rgb(0 0 0 / 20%)
}
#c_navigation_0061635239687823 .e_container-13 {
	display-radio: 1;
	padding-left: 20px
}
#c_navigation_0061635239687823 .e_container-13 .p_item {
	display-radio: 1
}
#c_navigation_0061635239687823 .e_container-14 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex;
	background_radio: 1
}
#c_navigation_0061635239687823 .e_container-14 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_navigation_0061635239687823 .e_container-14 .cbox-14-0 {
	flex: 0 0 420px;
	align-self: center
}
#c_navigation_0061635239687823 .e_container-14 .cbox-14-2 {
	flex: 0 0 80px;
	align-self: center
}
#c_navigation_0061635239687823 .e_image-15 {
	overflow: hidden;
	display-radio: 1;
	max-width: 444px
}
#c_navigation_0061635239687823 .e_image-15 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: unset
}
#c_navigation_0061635239687823.active .e_image-15 img {
	display: none
}
#c_navigation_0061635239687823 .e_image-15 img.logocai {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: unset;
	display: none
}
#c_navigation_0061635239687823.active .e_image-15 img.logocai {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: unset;
	display: block
}
#c_navigation_0061635239687823 .e_container-14 .cbox-14-1 {
	margin-left: 0%;
	align-self: center
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level1Box {
	display: flex;
	justify-content: flex-end
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_iconBox {
	height: 60px;
	width: 60px;
	border-radius: 0;
	display: flex;
	flex-direction: column;
	justify-content: center
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_openIcon {
	width: 100%;
	height: 60px;
	padding: 12px 0px;
	margin: 0
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_closeIcon {
	width: 100%;
	height: 60px;
	padding: 12px 0px;
	margin: 0;
	fill: #00319c
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_navButton {
	display: none
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level2Box {
	display: none;
	height: auto;
	padding: 15px 0;
	background: #f2f2f2;
	width: 160px;
	position: absolute;
	left: 50%;
	top: 100%;
	z-index: 99;
	transform: translateX(-50%);
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level3Box {
	display: none;
	height: auto;
	padding: 15px 0;
	background: #fff;
	background: #f5f5f5;
	width: 130px;
	position: absolute;
	top: 0;
	left: 100%;
	z-index: 9;
	border-radius: 5px;
	border-top-left-radius: 0px
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level1Item {
	position: relative;
	border: none
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level2Item {
	position: relative;
	width: 100%
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level3Item {
	width: 100%
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level1Item a {
	font-size: 16px;
	padding: 0 1.2vw;
	line-height: 80px;
	display: block;
	text-align: center
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level2Item a {
	font-size: 15px;
	padding: 0 20px;
	line-height: 35px;
	display: block;
	text-align: center;
	color: #666;
	opacity: 1;
	transition: all ease .3s
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level2Item a:hover {
	color: #00319c
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level1Item:hover .p_menu1Item {
	color: #00319c
}
#c_navigation_0061635239687823 .head_lan {
	width: 80px;
	position: relative
}
#c_navigation_0061635239687823 .lan_con {
	width: auto;
	display: flex;
	height: 80px;
	justify-content: center;
	align-items: center;
	border-right: 1px solid rgba(200,200,200,.2)
}
#c_navigation_0061635239687823 .lan_con:hover {
	cursor: pointer
}
#c_navigation_0061635239687823 .head_lan .lan_tit {
	width: auto;
	line-height: 36px;
	display: flex;
	align-items: center
}
#c_navigation_0061635239687823 .head_lan .lan_tit span {
	font-size: 14px;
	color: #fff;
	display: none
}
#c_navigation_0061635239687823 .head_lan .lan_tit .iconfont.map {
	margin-right: 0px;
	margin-left: 0;
	font-size: 0;
	width: 26px;
	height: 26px;
	-webkit-border-radius: 100%;
	background: url(../image/d5bd0532-9689-412d-9445-4deb4f25c22b.gif) no-repeat center center;
	background-size: cover;
	display: block
}
#c_navigation_0061635239687823.active .head_lan .lan_tit .iconfont.map {
	width: 26px;
	height: 26px;
	background: url(../image/d5bd0532-9689-412d-9445-4deb4f25c22b.gif) #00319c no-repeat center center;
	background-size: cover;
	display: block
}
#c_navigation_0061635239687823 .head_lan .lan_list {
	display: flex;
	width: 120px;
	background: #fff;
	padding: 3px 0px 10px 0px;
	position: fixed;
	z-index: 99;
	top: 65px;
	font-size: 13px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translate(0, 20px);
	transition: all .3s ease;
	flex-direction: column
}
#c_navigation_0061635239687823 .head_lan .lan_list.cur {
	opacity: 1;
	transform: translate(0, 0px);
	visibility: visible
}
#c_navigation_0061635239687823 .head_lan .lan_list span {
	position: relative;
	display: inline-block;
	padding-left: 45px
}
#c_navigation_0061635239687823 .head_lan .lan_list p:nth-child(1) span {
	background: url(../image/ad32fc8b-4511-4760-86d3-f09a709dca89.png) no-repeat left center
}
#c_navigation_0061635239687823 .head_lan .lan_list p:nth-child(2) span {
	background: url(../image/0004710a-d839-45a4-95e7-876bbba31cdf.jpg) no-repeat left center
}
#c_navigation_0061635239687823 .head_lan .lan_list p:nth-child(3) span {
	background: url(../image/96a677cc-12d5-4912-8007-622e23fa5c8a.jpg) no-repeat left center
}
#c_navigation_0061635239687823 .head_lan .lan_list p:nth-child(4) span {
	background: url(../image/b1d85aa1-9e49-45b9-bf85-635702643910.jpg) no-repeat left center
}
#c_navigation_0061635239687823 .head_lan .lan_list .iconfont:before {
	color: #fff;
	position: absolute;
	font-size: 24px;
	width: 100%;
	top: -5px;
	text-align: center
}
#c_navigation_0061635239687823 .head_lan .lan_list p {
	padding: 3px
}
#c_navigation_0061635239687823 .head_lan .lan_list a {
	color: #666;
	display: block;
	text-align: center;
	padding: 2px 5px;
	height: 30px;
	line-height: 30px;
	transition: all .3s ease
}
#c_navigation_0061635239687823 .head_lan .lan_list a:hover {
	color: #00319c
}
#c_navigation_0061635239687823 .e_html-17 {
	min-height: 0px;
	display-radio: 1;
	background_radio: 1
}
#c_navigation_0061635239687823 .e_html-17 .nav-search {
	width: 80px;
	height: 80px;
	justify-content: center;
	display: flex;
	align-items: center;
	background: none;
	transition: all .5s ease
}
#c_navigation_0061635239687823 .e_html-17 .nav-search:hover {
	cursor: pointer
}
#c_navigation_0061635239687823 .e_html-17 .seabtn svg {
	fill: #fff
}
#c_navigation_0061635239687823.active .e_html-17 .nav-search {
	background: #00319c
}
#c_navigation_0061635239687823.active .e_html-17 .seabtn svg {
	fill: #fff
}
#c_navigation_0061635239687823 .e_container-18 {
	display: none;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex;
	min-height: 0px;
	top: 100%;
	left: 0;
	position: absolute
}
#c_navigation_0061635239687823 .e_container-18 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_navigation_0061635239687823 .e_container-18 .bg {
	flex: 0 0 100%;
	min-height: 2000px;
	width: 100%;
	top: 0;
	position: absolute;
	background-color: rgba(0,0,0,0.7);
	opacity: 0;
	visibility: hidden;
	transition: .5s ease
}
#c_navigation_0061635239687823 .e_container-18.on .bg {
	opacity: 1;
	visibility: visible
}
#c_navigation_0061635239687823 .e_container-18 .cbox-18-1 {
	flex: 0 0 100%;
	background-color: rgba(242,242,242,1);
	margin-top: 0px;
	margin-left: auto;
	margin-bottom: 0px;
	margin-right: auto;
	padding-top: 3%;
	padding-bottom: 3%;
	padding-left: 5%;
	padding-right: 5%
}
#c_navigation_0061635239687823 .e_form-19 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 80%;
	display-radio: flex;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto
}
#c_navigation_0061635239687823 .e_form-19 > .p_formItem {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_navigation_0061635239687823 .e_form-19 .cbox-19-1 {
	flex: 0 0 60px
}
#c_navigation_0061635239687823 .e_input-20 .p_phoneCode {
	width: 90px;
	margin-right: 10px
}
#c_navigation_0061635239687823 .e_input-20 {
	display-radio: 1;
	height: auto
}
#c_navigation_0061635239687823 .form-group {
	margin-bottom: 0px
}
#c_navigation_0061635239687823 .form-control {
	border-right: none;
	height: 50px;
	border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	padding: 5px 25px
}
#c_navigation_0061635239687823 .form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: #ddd;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 0%)
}
#c_navigation_0061635239687823 .e_formBtn-21 {
	display: flex;
	position: relative;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
	width: 60px;
	padding: 0;
	height: 100%;
	border-right: 1px solid #ddd;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	border-top-left-radius: 0px;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	border-bottom-left-radius: 0;
	border-left: none;
	background_radio: 1;
	border_radio: 1;
	font_radio: 1;
	radius_radio: 1;
	background: #fff
}
#c_navigation_0061635239687823 .e_formBtn-21 .ss_icon {
	fill: #00319c;
	z-index: 1;
	position: relative
}
#c_navigation_0061635239687823 .e_formBtn-21:hover .ss_icon {
	fill: #ffffff
}
#c_navigation_0061635239687823 .e_formBtn-21 span {
	display: none;
	width: 100%;
	position: relative;
	z-index: 1;
	outline: 0;
	margin: 0px;
	overflow: hidden
}
#c_navigation_0061635239687823 .e_formBtn-21::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	transition: all .3s;
	z-index: 0;
	opacity: 0;
	top: 0;
	left: 0px
}
#c_navigation_0061635239687823 .e_formBtn-21:hover::after {
	opacity: 1;
	background: #00319c
}
#c_navigation_0061635239687823 .btn:focus {
	box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 0%)
}
#c_navigation_0061635239687823 .e_navigationA-16 {
	display-radio: 1
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_menu1Item {
	display-radio: 1
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_navContent {
	display-radio: 1
}
.pl_service2 {
	right: 5px !important
}
.pl_service2 .service_item {
	border: #eee 1px solid !important;
	border-radius: 5px !important;
	background-color: rgba(255,255,255,0.8) !important
}
.pl_service2 .service_item:hover {
	border: #00319c 1px solid !important;
	background-color: #00319c !important
}
.pl_service2 .service_value {
	background-color: #00319c !important
}
.pl_service2 .service_value::after {
	border-left: 6px solid #00319c !important
}
ul.p_level2Box {
	height: auto !important
}
@media screen and (max-width:768px) {
#c_grid-116273709439191 > div > .p_gridCell {
	margin: 0px !important
}
#c_navigation_0061635239687823 {
	background: #fff
}
#c_navigation_0061635239687823 .e_container-13 {
	padding-left: 0px;
	padding-right: 0px
}
#c_navigation_0061635239687823 .e_container-14 {
	position: relative;
	width: 100%;
	padding: 0px 0px 0px 15px;
	justify-content: space-between;
	background_radio: 1;
	display-radio: 1
}
#c_navigation_0061635239687823 .e_container-14 .cbox-14-0 {
	flex: 0 0 240px;
	z-index: 5
}
#c_navigation_0061635239687823 .e_container-14 .cbox-14-1 {
	flex: 0 0 auto;
	margin-left: 0px;
	z-index: 2
}
#c_navigation_0061635239687823 .e_container-14 .cbox-14-2 {
	flex: 0 0 auto;
	position: absolute;
	z-index: 5;
	right: 60px;
	align-self: center
}
#c_navigation_0061635239687823 .e_image-15 img {
	display: none
}
#c_navigation_0061635239687823 .e_image-15 img.logocai {
	display: block
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level1Box {
	display: block
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_iconBox {
	display: block
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_navContent {
	display: none;
	padding: 0;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	overflow-y: scroll;
	left: 0;
	background: #f2f2f2;
	z-index: 99
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_navContent .p_navButton {
	position: fixed;
	background: #fff;
	z-index: 2;
	width: 100%
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_navButton {
	display: flex;
	justify-content: flex-end
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level1Box {
	width: 100%;
	background: #f2f2f2;
	position: relative;
	z-index: 1;
	margin-top: 60px;
	padding-left: 20px;
	padding-right: 20px;
	border-top: 1px solid #ddd
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level2Box, #c_navigation_0061635239687823 .e_navigationA-16 .p_level3Box {
	padding: 0 0 0 30px;
	background: none
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_jtIcon {
	float: right;
	transition: 0.5s;
	height: 30px;
	margin-top: 10px
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_jtHover {
	transition: 0.5s;
	transform: rotate(90deg)
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level2Box, #c_navigation_0061635239687823 .e_navigationA-16 .p_level3Box {
	width: 100%;
	left: 0;
	transform: translateX(0);
	position: inherit;
	border-radius: 0
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level1Item {
	border-bottom: 1px solid rgb(0 0 0 / 5%);
	line-height: 50px;
	font-size: 14px
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level1Item a, #c_navigation_0061635239687823 .e_navigationA-16 .p_level2Item a {
	line-height: 50px;
	font-size: 14px;
	padding: 0;
	display: inline;
	text-align: left;
	opacity: 1
}
#c_navigation_0061635239687823 .e_html-17 .nav-search {
	width: 30px;
	height: 30px;
	background: none !important
}
#c_navigation_0061635239687823 .e_html-17 .seabtn svg {
	fill: #333 !important
}
#c_navigation_0061635239687823 .e_navigationA-16 .nav-tel {
	display: none
}
#c_navigation_0061635239687823 .e_navigationA-16 .tel-text {
	font-size: 20px;
	font-family: arial;
	color: #f08200;
	font-weight: bold;
	line-height: 40px
}
#c_navigation_0061635239687823 .e_navigationA-16 .tel-con {
	display: flex;
	justify-content: flex-start;
	align-items: center
}
#c_navigation_0061635239687823 .e_navigationA-16 .tel-ico {
	width: 28px;
	height: 28px;
	margin-right: 8px
}
#c_navigation_0061635239687823 .e_navigationA-16 .tel-ico svg {
	fill: #f08200
}
#c_navigation_0061635239687823 .head_lan {
	width: 100%
}
#c_navigation_0061635239687823 .head_lan .lan_tit {
	display: none
}
#c_navigation_0061635239687823 .lan_con {
	width: auto;
	display: flex;
	height: 50px;
	margin-left: 20px;
	margin-right: 20px;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid rgb(0 0 0 / 5%);
	border-right: none
}
#c_navigation_0061635239687823 .head_lan .lan_list {
	display: flex;
	width: 100%;
	background: none;
	padding: 0;
	position: relative;
	z-index: 1;
	justify-content: center;
	top: 0;
	font-size: 13px;
	box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 0%);
	opacity: 1;
	visibility: visible;
	transform: translate(0, 0px);
	transition: all .3s ease;
	flex-direction: row
}
#c_navigation_0061635239687823 .e_form-19 {
	display-radio: 1;
	width: 100%
}
}
@media screen and (min-width: 769px) {
#c_navigation_0061635239687823 .e_navigationA-16 .p_navContent {
	display: flex;
	justify-content: flex-end;
	align-items: center
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_menu1Item {
	color: #fff;
	font-weight: bold;
	position: relative
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_menu1Item::before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0px;
	border: 8px solid;
	border-color: transparent transparent #00319c transparent;
	opacity: 0;
	transition: all .5s ease
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level1Item:hover .p_menu1Item::before {
	color: #00319c;
	opacity: 1;
	bottom: 0px
}
#c_navigation_0061635239687823.active .e_navigationA-16 .p_menu1Item {
	color: #333
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_jtIcon {
	transform: rotate(90deg);
	display: none
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level2Item .p_jtIcon {
	display: none
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_iconBox {
	display: none
}
#c_navigation_0061635239687823 .e_navigationA-16 .nav-tel {
	display: flex;
	align-items: center
}
#c_navigation_0061635239687823 .e_navigationA-16 .nav-tel .tel-con {
	display: flex;
	align-items: center;
	padding: 0 10px;
	border-left: 1px solid rgba(200, 200, 200, .2);
	border-right: 1px solid rgba(200, 200, 200, .2)
}
#c_navigation_0061635239687823 .e_navigationA-16 .nav-tel .tel-con .tel-ico {
	height: 28px;
	width: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 5px
}
#c_navigation_0061635239687823 .e_navigationA-16 .nav-tel .tel-con .tel-text {
	font-size: 20px;
	font-weight: normal;
	font-family: arial;
	color: #fff;
	line-height: 80px
}
#c_navigation_0061635239687823 .e_navigationA-16 .nav-tel .tel-con .tel-ico svg {
	fill: #eee
}
#c_navigation_0061635239687823.active .e_navigationA-16 .nav-tel .tel-con .tel-text {
	color: #333
}
#c_navigation_0061635239687823.active .e_navigationA-16 .nav-tel .tel-con .tel-ico svg {
	fill: #00319c
}
#c_navigation_0061635239687823.active .e_navigationA-16 .nav-tel .tel-con {
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level2Box {
	background: #00319c
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level2Item a {
	color: rgba(255,255,255,.8)
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level2Item a:hover {
	color: rgba(255,255,255,1)
}
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
}
#c_grid-116273709439190 .p_gridbox::after {
	content: '';
	clear: left;
	display: block
}
#c_grid-116273709439190 > div > .p_gridbox {
	width: 100%;
	overflow: hidden;
	position: static
}
#c_grid-116273709439190 > div > .p_gridCell {
	float: left;
	position: static
}
#c_grid-116273709439190 > .p_gridbox.signal {
	min-height: inherit
}
#c_grid-116273709439190 > .p_gridbox.signal > .p_gridCell {
	min-height: inherit !important
}
#c_grid-116273709439190 {
	margin-left: auto;
	margin-right: auto;
	width: 100%
}
@media screen and (max-width:768px) {
#c_grid-116273709439190 > .p_gridbox > .p_gridCell:nth-child(1n + 1) {
	width: 99%;
	margin-left: 0.5%;
	margin-right: 0.5%;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	clear: left
}
}
@media screen and (min-width: 769px) {
#c_grid-116273709439190 > .p_gridbox > .p_gridCell:nth-child(1n + 1) {
	width: 100%;
	margin-left: 0%;
	margin-right: 0%;
	margin-top: 0rem;
	margin-bottom: 0rem;
	clear: left
}
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
#c_grid-116273709439190 > .p_gridbox > .p_gridCell:nth-child(1n + 1) {
	width: 99%;
	margin-left: 0.5%;
	margin-right: 0.5%;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	clear: left
}
}
#c_new_list_180_P_074-17218731230290 {
	min-height: 0px;
	padding-top: 80px;
	padding-bottom: 280px;
	display-radio: 1;
	background_radio: 2;
	background-fill-value: background-image;
	background-image: url(../image/ff0173bd-d736-4f74-b552-30f2ff0abd16.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed
}
#c_new_list_180_P_074-17218731230290 .e_text-16 {
	line-height: normal;
	font_radio: 2;
	margin-top: 0px;
	margin-left: auto;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden
}
.e_container-8:hover #c_new_list_180_P_074-17218731230290 .e_text-16, .e_container-8:hover #c_new_list_180_P_074-17218731230290 .e_text-16 {
	color: rgba(255,255,255,1)
}
#c_new_list_180_P_074-17218731230290 .e_text-16, #c_new_list_180_P_074-17218731230290 .e_text-16 {
	transition-property: all;
	transition-duration: 0.8s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1)
}
#c_new_list_180_P_074-17218731230290 .e_text-17 {
	line-height: 1.6;
	font_radio: 2;
	margin-top: 10px;
	margin-left: auto;
	color: rgba(130,130,130,1);
	font-size: 12px;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden
}
#c_new_list_180_P_074-17218731230290 .e_text-17 .p_item {
	margin-top: 10px
}
.e_container-8:hover #c_new_list_180_P_074-17218731230290 .e_text-17, .e_container-8:hover #c_new_list_180_P_074-17218731230290 .e_text-17 {
	color: rgba(255,255,255,1)
}
#c_new_list_180_P_074-17218731230290 .e_text-17, #c_new_list_180_P_074-17218731230290 .e_text-17 {
	transition-property: all;
	transition-duration: 0.8s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1)
}
#c_new_list_180_P_074-17218731230290 .e_image-18 {
	overflow: hidden
}
#c_new_list_180_P_074-17218731230290 .e_image-18 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}
#c_new_list_180_P_074-17218731230290 .e_image-20 {
	overflow: hidden
}
#c_new_list_180_P_074-17218731230290 .e_image-20 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}
#c_new_list_180_P_074-17218731230290 .e_text-22 {
	line-height: normal;
	font_radio: 2;
	margin-top: 6px;
	margin-left: 37px;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 16px;
	color: rgba(107,107,107,1);
	margin-right: 100px;
	transition-property: all;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1)
}
#c_new_list_180_P_074-17218731230290 .e_text-23 {
	line-height: 1.6;
	font_radio: 2;
	margin-top: 12px;
	margin-left: 37px;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 12px;
	color: rgba(119,119,119,1);
	margin-right: 100px;
	transition-property: all;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1)
}
#c_new_list_180_P_074-17218731230290 .e_line-24 {
	border-top-color: rgba(51,51,51,1);
	border-top-style: solid;
	border-top-width: 1px;
	width: 0px;
	margin-left: 0px;
	margin-right: auto;
	transition-property: all;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1)
}
.e_container-3:hover #c_new_list_180_P_074-17218731230290 .e_line-24 {
	width: 70px
}
#c_new_list_180_P_074-17218731230290 .e_text-50 {
	line-height: normal;
	display-radio: 1;
	font_radio: 2
}
#c_new_list_180_P_074-17218731230290 .p_item {
	display-radio: 1
}
hr {
	box-sizing: content-box;
	height: 0;
	margin-top: 0.5rem;
	border: 0;
	border-top: 1px solid rgba(0,0,0,.1)
}
#c_new_list_180_P_074-17218731230290 .e_container-104 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	margin-left: auto;
	margin-right: auto;
	padding-right: 0px;
	display-radio: flex;
	padding-left: 0px;
	margin-bottom: 50px;
	max-width: 1600px;
	margin-top: 0px;
	width: 94%
}
#c_new_list_180_P_074-17218731230290 .e_container-104 .p_item {
	flex: 1;
	max-width: 100%;
	display-radio: 1
}
#c_new_list_180_P_074-17218731230290 .e_container-104 .cbox-104-0 {
	align-self: center
}
#c_new_list_180_P_074-17218731230290 .e_text-112 {
	font_radio: 2;
	font-size: 70px;
	color: rgba(255,255,255,1);
	font-weight: bold;
	text-align: center;
	font-family: 'poppins-bold';
	line-height: 1;
	transition: all .5s ease;
	display-radio: 1
}
@media screen and (max-width:768px) {
#c_new_list_180_P_074-17218731230290 .e_container-104 {
	display-radio: 1;
	flex-direction: column
}
#c_new_list_180_P_074-17218731230290 .e_container-104 .cbox-104-1 {
	flex: 0 0 42%
}
#c_new_list_180_P_074-17218731230290 .e_text-112 {
	font_radio: 2;
	font-size: 50px;
	color: rgba(255,255,255,1);
	line-height: 1.5;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	display-radio: -webkit-box
}
}
#c_new_list_180_P_075-17218731130090 {
	min-height: 0px;
	padding-top: 0px;
	padding-bottom: 4%;
	display-radio: 1;
	background_radio: 2;
	background-fill-value: background-color
}
#c_new_list_180_P_075-17218731130090 .e_text-16 {
	line-height: normal;
	font_radio: 2;
	margin-top: 0px;
	margin-left: auto;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden
}
.e_container-8:hover #c_new_list_180_P_075-17218731130090 .e_text-16, .e_container-8:hover #c_new_list_180_P_075-17218731130090 .e_text-16 {
	color: rgba(255,255,255,1)
}
#c_new_list_180_P_075-17218731130090 .e_text-16, #c_new_list_180_P_075-17218731130090 .e_text-16 {
	transition-property: all;
	transition-duration: 0.8s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1)
}
#c_new_list_180_P_075-17218731130090 .e_text-17 {
	line-height: 1.6;
	font_radio: 2;
	margin-top: 10px;
	margin-left: auto;
	color: rgba(130,130,130,1);
	font-size: 12px;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden
}
#c_new_list_180_P_075-17218731130090 .e_text-17 .p_item {
	margin-top: 10px
}
.e_container-8:hover #c_new_list_180_P_075-17218731130090 .e_text-17, .e_container-8:hover #c_new_list_180_P_075-17218731130090 .e_text-17 {
	color: rgba(255,255,255,1)
}
#c_new_list_180_P_075-17218731130090 .e_text-17, #c_new_list_180_P_075-17218731130090 .e_text-17 {
	transition-property: all;
	transition-duration: 0.8s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1)
}
#c_new_list_180_P_075-17218731130090 .e_image-18 {
	overflow: hidden
}
#c_new_list_180_P_075-17218731130090 .e_image-18 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}
#c_new_list_180_P_075-17218731130090 .e_image-20 {
	overflow: hidden
}
#c_new_list_180_P_075-17218731130090 .e_image-20 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}
#c_new_list_180_P_075-17218731130090 .e_text-22 {
	line-height: normal;
	font_radio: 2;
	margin-top: 6px;
	margin-left: 37px;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 16px;
	color: rgba(107,107,107,1);
	margin-right: 100px;
	transition-property: all;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1)
}
#c_new_list_180_P_075-17218731130090 .e_text-23 {
	line-height: 1.6;
	font_radio: 2;
	margin-top: 12px;
	margin-left: 37px;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 12px;
	color: rgba(119,119,119,1);
	margin-right: 100px;
	transition-property: all;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1)
}
#c_new_list_180_P_075-17218731130090 .e_line-24 {
	border-top-color: rgba(51,51,51,1);
	border-top-style: solid;
	border-top-width: 1px;
	width: 0px;
	margin-left: 0px;
	margin-right: auto;
	transition-property: all;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1)
}
.e_container-3:hover #c_new_list_180_P_075-17218731130090 .e_line-24 {
	width: 70px
}
#c_new_list_180_P_075-17218731130090 .e_text-50 {
	line-height: normal;
	display-radio: 1;
	font_radio: 2
}
#c_new_list_180_P_075-17218731130090 .p_item {
	display-radio: 1
}
hr {
	box-sizing: content-box;
	height: 0;
	margin-top: 0.5rem;
	border: 0;
	border-top: 1px solid rgba(0,0,0,.1)
}
#c_new_list_180_P_075-17218731130090 .e_container-115 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	margin-left: auto;
	margin-right: auto;
	padding-right: 0px;
	display-radio: flex;
	padding-left: 0px;
	margin-bottom: 0px;
	max-width: 1600px;
	margin-top: -260px;
	width: 94%;
	background-fill-value: background-image;
	background-image: url(../image/8be4c4fb-d901-4dbf-9790-b518a98e1aee.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 80px;
	padding-bottom: 80px;
	background_radio: 2
}
#c_new_list_180_P_075-17218731130090 .e_container-115 .p_item {
	flex: 1;
	max-width: 100%;
	display-radio: 1
}
#c_new_list_180_P_075-17218731130090 .e_container-115 .cbox-115-0 {
	align-self: center
}
#c_new_list_180_P_075-17218731130090 .e_h1-117 {
	color: rgba(255,255,255,1);
	font-size: 46px;
	font_radio: 2;
	line-height: 1;
	font-family: 'poppins-bold';
	display-radio: 1;
	margin-top: 20px;
	margin-left: -2px;
	margin-bottom: 0px;
	text-align: center;
	font-weight: normal
}
#c_new_list_180_P_075-17218731130090 .e_richText-118 {
	font_radio: 2;
	display-radio: -webkit-box;
	margin-top: 20px;
	max-width: 1100px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-webkit-line-clamp: 5;
	color: rgba(236,224,208,1);
	text-align: right;
	margin-right: auto;
	margin-left: auto;
	width: 94%;
	line-height: 1.5;
	font-family: poppins-regular;
	margin-bottom: 30px
}
#c_new_list_180_P_075-17218731130090 .e_form-119 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 80%;
	display-radio: flex;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px
}
#c_new_list_180_P_075-17218731130090 .e_form-119 > .p_formItem {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_new_list_180_P_075-17218731130090 .e_form-119 .cbox-119-1 {
	flex: 0 0 60px
}
#c_new_list_180_P_075-17218731130090 .e_formBtn-120 {
	display: flex;
	position: relative;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
	width: 60px;
	padding: 0;
	height: 100%;
	border: 1px solid #fff;
	border-top-left-radius: 0px;
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
	border-bottom-left-radius: 0;
	border-left: none;
	background_radio: 1;
	border_radio: 1;
	font_radio: 1;
	radius_radio: 1;
	background: #fff
}
#c_new_list_180_P_075-17218731130090 .e_formBtn-120 .ss_icon {
	fill: #cf000e;
	z-index: 1;
	width: 18px;
	position: relative
}
#c_new_list_180_P_075-17218731130090 .e_formBtn-120:hover .ss_icon {
	fill: #ffffff
}
#c_new_list_180_P_075-17218731130090 .e_formBtn-120 span {
	display: none;
	width: 100%;
	position: relative;
	z-index: 1;
	outline: 0;
	margin: 0px;
	overflow: hidden
}
#c_new_list_180_P_075-17218731130090 .e_formBtn-120::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	transition: all .3s;
	z-index: 0;
	opacity: 0;
	top: 0;
	left: 0px
}
#c_new_list_180_P_075-17218731130090 .e_formBtn-120:hover::after {
	opacity: 1;
	background: #cf000e
}
#c_new_list_180_P_075-17218731130090 .e_input-121 .p_phoneCode {
	width: 90px;
	margin-right: 10px
}
#c_new_list_180_P_075-17218731130090 .e_input-121 {
	display-radio: 1;
	height: auto
}
#c_new_list_180_P_075-17218731130090 .form-group {
	margin-bottom: 0rem
}
#c_new_list_180_P_075-17218731130090 .form-control {
	display: block;
	width: 100%;
height:calc(2em + .75rem + 2px);
padding:.375rem .75rem;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	border: 1px solid #fff;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}
#c_new_list_180_P_075-17218731130090 .e_h1-122 {
	color: rgba(255,255,255,1);
	font-size: 26px;
	font_radio: 2;
	line-height: 1;
	font-family: 'poppins-bold';
	display-radio: 1;
	margin-top: 40px;
	margin-left: -2px;
	margin-bottom: 0px;
	text-align: center
}
@media screen and (max-width:768px) {
#c_new_list_180_P_075-17218731130090 .e_container-115 {
	display-radio: 1;
	flex-direction: column
}
#c_new_list_180_P_075-17218731130090 .e_container-115 .cbox-115-1 {
	flex: 0 0 42%
}
#c_new_list_180_P_075-17218731130090 .e_h1-117 {
	font_radio: 2;
	display-radio: 1;
	font-size: 30px
}
#c_new_list_180_P_075-17218731130090 .e_richText-118 {
	font_radio: 1;
	display-radio: -webkit-box;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden
}
#c_new_list_180_P_075-17218731130090 .e_form-119 {
	display-radio: 1;
	width: 94%
}
#c_new_list_180_P_075-17218731130090 .e_h1-122 {
	font_radio: 2;
	display-radio: 1;
	font-size: 30px
}
}
@media screen and (min-width: 769px) {
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
}
#c_static_001-1636703125092 {
	min-height: 100px;
	padding-top: 0px;
	display-radio: 1;
	background-color: rgba(244,244,244,1);
	background_radio: 2;
	margin-top: 0px
}
.e_text0 {
	font_radio: 2;
	line-height: 2
}
.e_text1 {
	font_radio: 2;
	line-height: 2
}
.e_text2 {
	font_radio: 2;
	line-height: 2;
	font-weight: normal
}
.e_text3 {
	font_radio: 2;
	line-height: 2
}
.e_text4 {
	font_radio: 2;
	line-height: 2
}
.e_text5 {
	font_radio: 2;
	line-height: 2
}
.e_text6 {
	font_radio: 2;
	line-height: 2
}
#c_static_001-1636703125092 .e_container-34 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex;
	background-fill-value: background-color;
	background-color: rgba(56,56,56,1);
	background_radio: 2
}
#c_static_001-1636703125092 .e_container-34 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_static_001-1636703125092 .e_container-35 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex;
	background-color: rgba(0,0,0,1);
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: rgba(255,255,255,0.2);
	background_radio: 2
}
#c_static_001-1636703125092 .e_container-35 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_static_001-1636703125092 .e_container-34 .p_item {
	display-radio: 1
}
#c_static_001-1636703125092 .e_container-37 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 94%;
	transition-property: all;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	display-radio: flex
}
#c_static_001-1636703125092 .e_container-37 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_static_001-1636703125092 .e_container-37 .cbox-37-0 {
	flex: 0 0 40%
}
#c_static_001-1636703125092 .e_container-38 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	transition-property: all;
	width: auto;
	margin-right: 0px
}
#c_static_001-1636703125092 .e_container-38 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_static_001-1636703125092 .e_container-38 .cbox-38-0 {
	padding-right: 30px
}
#c_static_001-1636703125092 .e_container-38 .cbox-38-1 {
	flex: 0 0 auto;
	align-items: center
}
#c_static_001-1636703125092 .e_richText-39 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition-property: all;
	font_radio: 2;
	font-size: 14px;
	color: rgba(189,189,189,1);
	line-height: 1.6;
	display-radio: -webkit-box
}
#c_static_001-1636703125092 .e_provider-40 {
	display: -webkit-box;
	
	overflow: hidden;
	transition-property: all;
	font_radio: 2;
	font-size: 14px;
	color: rgba(189,189,189,1);
	line-height: 1.6;
	text-align: right;
	display-radio: -webkit-box
}
#c_static_001-1636703125092 .e_provider-40 a {
	text-align: right;
	display: block
}
#c_static_001-1636703125092 .e_container-42 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 94%;
	transition-property: all;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 70px;
	margin-bottom: 50px;
	display-radio: flex;
	justify-content: space-between;
	background_radio: 1
}
#c_static_001-1636703125092 .e_container-42 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_static_001-1636703125092 .e_container-42 .cbox-42-2 {
	flex: 0 0 300px
}
#c_static_001-1636703125092 .e_container-42 .cbox-42-1 {
	flex: 0 0 auto
}
#c_static_001-1636703125092 .e_container-42 .cbox-42-0 {
	flex: 0 0 275px
}
#c_static_001-1636703125092 .e_container-44 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%
}
#c_static_001-1636703125092 .e_container-44 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_static_001-1636703125092 .e_richText-46 {
	font_radio: 2;
	font-size: 14px;
	color: rgba(169,169,169,0.5);
	line-height: 2;
	display-radio: 1
}
#c_static_001-1636703125092 .e_text-41 {
	display-radio: 1;
	font_radio: 2;
	font-size: 14px;
	color: rgba(189,189,189,1);
	line-height: 1.5
}
#c_static_001-1636703125092 .e_container-49 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%
}
#c_static_001-1636703125092 .e_container-49 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_static_001-1636703125092 .e_bottomNav-53 span {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical
}
#c_static_001-1636703125092 .e_bottomNav-53 .p_level1Item {
	width: auto;
	padding: 0 15px;
	flex-grow: 1
}
#c_static_001-1636703125092 .e_bottomNav-53 .p_level3Box {
	display: none
}
#c_static_001-1636703125092 .e_bottomNav-53 .p_menu1Item {
	display-radio: 1;
	font-size: 18px;
	color: rgba(255,255,255,1);
	line-height: 1.5;
	margin-bottom: 25px
}
#c_static_001-1636703125092 .e_bottomNav-53 .p_menu2Item {
	display-radio: 1;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 8px;
	color: rgba(191,191,191,0.5)
}
#c_static_001-1636703125092 .e_bottomNav-53 .p_menu2Item:hover {
	color: #0b69b2
}
#c_static_001-1636703125092 .e_text-45 {
	display-radio: 1;
	font_radio: 2;
	font-size: 20px;
	color: rgba(255,255,255,1);
	line-height: 1.5;
	margin-bottom: 25px
}
#c_static_001-1636703125092 .e_image-55 {
	overflow: hidden;
	display-radio: 1;
	max-width: 280px;
	margin-bottom: 20px
}
#c_static_001-1636703125092 .e_image-55 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}
#c_static_001-1636703125092 .e_text-56 {
	line-height: 1.5;
	display-radio: 1;
	font_radio: 2;
	color: rgba(244,243,243,0.5);
	font-size: 16px;
	margin-bottom: 30px
}
#c_static_001-1636703125092 .e_websiteShare-57 .p_share a {
	width: 30px;
	display: inline-block;
	margin-right: 10px
}
#c_static_001-1636703125092 .e_websiteShare-57 .p_share a img {
	width: 100%
}
#c_static_001-1636703125092 .e_credible-58 .img1 {
	width: 65px;
	height: 23px
}
#c_static_001-1636703125092 .e_credible-58 .img2 {
	width: 79px;
	height: 28px
}
#c_static_001-1636703125092 .e_credible-58 .img3 {
	width: 92px;
	height: 33px
}
#c_static_001-1636703125092 .e_credible-58 .img4 {
	width: 106px;
	height: 38px
}
#c_static_001-1636703125092 .e_credible-58 .img5 {
	width: 131px;
	height: 47px
}
#c_static_001-1636703125092 .e_websiteShare-57 {
	display-radio: 1;
	background_radio: 1;
	margin-bottom: 20px
}
@media only screen and (max-width:1366px) and (min-width:1025px) {
#c_navigation_0061635239687823 .e_navigationA-16 .nav-tel .tel-con .tel-text {
	font-size: 16px
}
#c_navigation_0061635239687823 .e_navigationA-16 .p_level1Item a {
	font-size: 14px
}
}
#c_static_001-1636703125092 .e_bottomNav-53 {
	display-radio: 1;
	font_radio: 1
}
#c_static_001-1636703125092 .e_credible-58 {
	display-radio: 1;
	background_radio: 1
}
#c_static_001-1636703125092 .e_container-38 .cbox-38-2 {
	flex: 0 0 64px
}
#c_static_001-1636703125092 .e_businessAndCopyright-59 .p_business {
	cursor: pointer;
	display-radio: 1;
	text-align: right
}
#c_static_001-1636703125092 .e_businessAndCopyright-59 .p_businesspopup {
	position: fixed;
	width: 100%;
	height: 100%;
	display: none;
	top: 10px;
	left: 0;
	z-index: 9999
}
#c_static_001-1636703125092 .e_businessAndCopyright-59 .p_businessclose {
	position: absolute;
	right: 20px;
	z-index: 9999;
	top: 0;
	cursor: pointer
}
#c_static_001-1636703125092 .e_businessAndCopyright-59 .icon {
	color: white;
	cursor: pointer
}
#c_static_001-1636703125092 .e_businessAndCopyright-59 .p_businesscontent {
	position: absolute;
	z-index: 9999;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	height: 100%
}
#c_static_001-1636703125092 .e_businessAndCopyright-59 .p_businessbg {
	background: #1e1e1e;
	opacity: .9;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 999
}
#c_static_001-1636703125092 .e_businessAndCopyright-59 .p_businessimg {
	width: 100%;
	height: 100%;
	object-fit: contain
}
#c_static_001-1636703125092 .e_businessAndCopyright-59 {
	font_radio: 2;
	display-radio: 1;
	margin-right: 0px;
	margin-left: auto;
	text-align: right;
	color: rgba(189,189,189,1)
}
#c_static_001-1636703125092 .e_bottomNav-53 .p_level2Box {
	display-radio: 1;
	color: rgba(230,229,229,1);
	font-size: 16px;
	font-family: Microsoft YaHei, 微软雅黑
}
@media screen and (max-width:768px) {
#c_grid-116273709439190 > .p_gridbox > .p_gridCell {
	margin: 0px !important;
	width: 100% !important
}
#c_static_001-1636703125092 .e_container-35 {
	padding-bottom: 0px
}
#c_static_001-1636703125092 .e_richText-46 {
	text-align: center
}
#c_static_001-1636703125092 .e_text-45 {
	text-align: center;
	margin-bottom: 10px
}
#c_static_001-1636703125092 .e_container-37 {
	flex-direction: column
}
#c_static_001-1636703125092 .e_container-38 {
	flex-direction: row;
	background_radio: 1;
	display-radio: 1
}
#c_static_001-1636703125092 .e_provider-40 a {
	text-align: center
}
#c_static_001-1636703125092 .e_container-38 .cbox-38-0 {
	padding-right: 0px;
	flex: 0 0 100%
}
#c_static_001-1636703125092 .e_container-38 .cbox-38-1 {
	text-align: center;
	flex: 0 0 100%
}
#c_static_001-1636703125092 .e_text-41 {
	text-align: center
}
#c_static_001-1636703125092 .e_container-42 {
	flex-direction: column;
	margin-top: 30px;
	margin-bottom: 30px;
	background_radio: 1;
	display-radio: 1
}
#c_static_001-1636703125092 .e_container-42 .cbox-42-1 {
	display: none
}
#c_static_001-1636703125092 .e_container-42 .cbox-42-2 {
	display: block;
	flex: 0 0 auto
}
#c_static_001-1636703125092 .e_bottomNav-53 .p_menu1Item, #c_static_001-1636703125092 .e_bottomNav-53 .p_menu2Item {
	display: flex;
	justify-content: space-between
}
#c_static_001-1636703125092 .e_bottomNav-53 .p_level1Box ul {
	display: none
}
#c_static_001-1636703125092 .e_bottomNav-53 .p_jtIcon {
	width: auto;
	height: auto;
	max-width: 20px;
	font-size: inherit;
	transition: 0.5s;
	margin: 0
}
#c_static_001-1636703125092 .e_bottomNav-53 .p_jtIcon.active {
	transform: rotateZ(90deg)
}
#c_static_001-1636703125092 .e_bottomNav-53 a {
	display: flex;
	flex-direction: column;
	justify-content: center
}
#c_static_001-1636703125092 .e_bottomNav-53 .p_level1Item {
	padding: 0
}
#c_static_001-1636703125092 .e_bottomNav-53 .p_menu2Item svg {
	opacity: .5
}
#c_static_001-1636703125092 .e_websiteShare-57 {
	background_radio: 1;
	display-radio: 1;
	width: auto;
	max-width: 250px;
	padding-left: 10px;
	margin-left: auto;
	margin-right: auto
}
#c_static_001-1636703125092 .e_image-55 {
	display-radio: 1;
	margin-left: auto;
	margin-right: auto
}
#c_static_001-1636703125092 .e_credible-58 {
	background_radio: 1;
	display-radio: 1;
	max-width: 131px;
	margin-left: auto;
	margin-right: auto
}
#c_static_001-1636703125092 .e_text-56 {
	font_radio: 2;
	display-radio: 1;
	text-align: center
}
#c_static_001-1636703125092 .e_businessAndCopyright-59 {
	font_radio: 2;
	display-radio: 1;
	text-align: center;
	margin-left: auto;
	margin-right: auto
}
#c_static_001-1636703125092 .e_container-38 .cbox-38-2 {
	flex: 0 0 100%
}
}
@media screen and (min-width: 769px) {
#c_static_001-1636703125092 .e_container-42 .cbox-42-1 {
	width: calc(90% - 520px);
	padding-left: 3%;
	border-right: 1px solid rgba(200, 200, 200, 0.2);
	border-left: 1px solid rgba(200,200,200,0.2);
	padding-right: 3%;
	margin-left: 3%;
	margin-right: 3%
}
#c_static_001-1636703125092 .e_bottomNav-53 .p_level1Box {
	display: flex
}
#c_static_001-1636703125092 .e_bottomNav-53 .p_jtIcon {
	display: none
}
#c_static_001-1636703125092 .e_bottomNav-53 .p_level1Item {
	display: none
}
#c_static_001-1636703125092 .e_bottomNav-53 .p_level1Item.open {
	display: block
}
}
#c_static_001_P_1080-1647501045930 {
	min-height: 300px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-container {
	width: 100%;
	height: 100vh;
	max-height: 1080px;
	overflow: hidden
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-slide {
	overflow: hidden;
	background: #fff;
	z-index: 10
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-slide-active {
	z-index: 11
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_slide {
	background-position: center center;
	background-size: cover
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_img {
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: none
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_video {
	width: 100%;
	height: 100%;
	overflow: hidden
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .P_link_img {
	display: block;
	position: relative;
	overflow: hidden;
	height: 100%;
	width: 100%;
	background-size: cover;
	transition: all ease 2s;
	transform: scale(1.1)
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-slide-active .P_link_img {
	transform: scale(1)
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_videoPoster {
	display: block;
	position: relative;
	overflow: hidden;
	height: 100%;
	width: 100%;
	background-size: cover;
	transition: transform ease 2s;
	transform: scale(1);
	cursor: pointer;
	z-index: 19
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-slide-active .p_videoPoster {
	transform: scale(1)
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .P_link_img img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(1.18);
	width: auto;
	height: 100%
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_videoPoster img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(1.18);
	width: auto;
	height: 100%
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_info {
	position: absolute;
	top: 52%;
	left: 50%;
	width: 80%;
	padding-right: 0%;
	z-index: 22;
	transform: translate(-50%, -50%)
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_info_fivebox {
	width: 100%
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_entitle {
	color: #fff;
	font-size: 68px;
	font-family: Poppins-Bold;
	line-height: 0.6;
	text-shadow: 3px 0 10px rgb(22 78 145 / 40%);
	transition: all ease 2s .5s;
	opacity: 0;
	transform: translateY(40px);
	display-radio: 1;
	font-weight: bold
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-slide-active .p_entitle {
	opacity: 1;
	transform: translateY(0px)
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_btitle {
	color: #fff;
	padding-left: 10px;
	line-height: 1.4;
	letter-spacing: 20px;
	margin-bottom: 35px;
	text-shadow: 3px 0 10px rgb(22 78 145 / 40%);
	transition: all ease 2s .7s;
	opacity: 0;
	transform: translateY(40px);
	display-radio: 1;
	font-size: 28px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-slide-active .p_btitle {
	opacity: 1;
	transform: translateY(0px)
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_summary {
	color: #fff;
	font-size: 15px;
	line-height: 1.6;
	margin-top: 20px;
	transition: all ease 2s 1s;
	opacity: 0;
	transform: translateY(40px)
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-slide-active .p_summary {
	opacity: 1;
	transform: translateY(0px)
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_cspan {
	position: relative;
	margin-top: 10px;
	display: block;
	transition: all ease 2s .8s;
	opacity: 0;
	transform: translateY(40px)
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_button {
	display: inline-block;
	margin-top: 40px;
	border-radius: 30px;
	border: 1px solid #fff;
	width: 100%;
	max-width: 150px;
	padding: 10px 15px;
	color: #fff;
	text-align: center;
	font-size: 14px;
	opacity: 0;
	transform: translateY(40px);
	transition: all ease .3s, transform ease .8s .9s, opacity ease .8s .9s;
	display: none
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_button:hover {
	border: 1px solid #fff;
	background: #fff;
	color: #333
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-slide-active .p_button {
	opacity: 1;
	transform: translateY(0px)
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-slide-active .p_cspan {
	opacity: 1;
	transform: translateY(0px)
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_cspan::before {
	content: '';
	width: 53px;
	margin-top: 39px;
	height: 1px;
	border-radius: 0;
	background: #fff;
	display: inline-block
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_cspan::before {
	background: #fff
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_scrool {
	position: absolute;
	left: calc((100% - 90px) / 2);
	bottom: 40px;
	color: #fff;
	width: 90px;
	z-index: 10
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_scrool span {
	text-transform: uppercase;
	color: #fff;
	display: block;
	font-family: arial;
	line-height: 20px;
	margin-top: 12px;
	font-size: 12px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_scrool i {
	display: block;
	width: 20px;
	height: 30px;
	margin: 0 auto;
	border-radius: 12px;
	border: 2px #fff solid;
	position: relative
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_scrool i:before {
	content: "";
	display: block;
	width: 4px;
	height: 10px;
	background: #fff;
	border-radius: 2px;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	top: 3px;
	animation: scrollmouse 2s linear infinite
}
@keyframes scrollmouse {
from {
transform:translate(-50%, 0);
opacity:1
}
to {
	transform: translate(-50%, 10px);
	opacity: 0
}
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_kongjian {
	position: absolute;
	right: 0;
	width: 100%;
	border-left: 1px solid rgb(255 255 255 / 10%);
	height: 100%;
	top: 0;
	bottom: 0;
	z-index: 1;
	max-width: 100px;
	pointer-events: none;
	display: none
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-pagination {
	position: absolute;
	display: flex;
	flex-direction: row;
	top: auto;
	right: auto;
	transform: translate(50%, -50%);
	left: 7%;
	width: auto;
	height: auto;
	bottom: 40px;    z-index: 99999999999;
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-pagination-bullet {
	margin: 3px 5px !important;
	background: hsl(0deg 0% 100% / 40%);
	opacity: 1;
	width: 10px;
	height: 10px;
	transition: all ease .3s
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-pagination-bullet-active {
	width: 30px;
	border-radius: 15px;
	background: rgb(255 255 255)
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-pagination-bullet:hover {
	background: rgb(255 255 255)
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_btn_next {
	color: #fff;
	border-radius: 0;
	border: 1px solid #fff;
	width: 50px;
	height: 50px;
	transition: all ease .3s;
	position: static;
	margin: 0 auto
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_btn_next::after {
	font-size: 16px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_btn_next:hover {
	background: rgba(255,255,255,.6);
	border: 1px solid rgba(255,255,255,.9)
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_btn_next:hover::after {
	color: #f08200
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_btn_prev {
	color: #fff;
	border-radius: 0;
	border: 1px solid #fff;
	height: 50px;
	width: 50px;
	transition: all ease .3s;
	position: static;
	margin: 0px 20px 0px 0px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_btn_prev::after {
	font-size: 16px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_btn_prev:hover {
	background: rgba(255,255,255,.6);
	border: 1px solid rgba(255,255,255,.9)
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_btn_prev:hover::after {
	color: #f08200
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .videoContent {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 20;
	cursor: pointer
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .videoContent video {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	height: auto;
	width: 100%
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_video_button {
	position: absolute;
	right: 0;
	width: 100%;
	bottom: 160px;
	z-index: 110;
	max-width: 100px;
	height: 50px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_videobtm {
	color: #fff;
	border-radius: 100%;
	border: 2px solid #fff;
	top: auto;
	bottom: 0;
	width: 50px;
	height: 50px;
	left: 50%;
	transform: translateX(-50%);
	transition: all ease .3s;
	display: block;
	position: absolute;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	display: none
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_video_button svg {
	margin: 0 auto;
	width: 15px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_arr {
	max-width: 120px;
	width: 100%;
	position: absolute;
	right: 7%;
	bottom:120px;
	height: auto;
	z-index: 99999999999999;
	display: flex;
	flex-direction: row;
	justify-content: center;
	text-align: center
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_videobtm:hover {
	background: #0e70b9;
	border: 2px solid #0e70b9
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .video_cover {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: url(https://omo-oss-image.thefastimg.com/portal-saas/pg2024070117001423172/cms/image/ac7dfb0c-9f66-4346-a20f-f226255c788d.png) repeat;
	z-index: 21;
	opacity: 1
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 {
	display-radio: 1;
	background_radio: 1
}
div {
	word-break: break-word !important
}
.yihang {
	color: rgba(0, 48, 156, 1)
}
#c_banner_015_P_052-1652857574826 {
	background_radio: 2;
	display-radio: 1
}
@media screen and (max-width:768px) {
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_info_fivebox {
	width: 100%;
	padding-bottom: 0px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_info {
	width: 90%;
	padding-right: 0
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_scrool {
	display: none
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_summary {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 10px;
	margin-top: 10px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_entitle {
	font-size: 24px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_btitle {
	font-size: 22px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_cspan::before {
	width: 25px;
	height: 2px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_kongjian {
	max-width: 55px;
	display: none
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_arr {
	max-width: 55px;
	display: none
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_video_button {
	max-width: 55px;
	bottom: 106px;
	height: 28px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	margin: 3px !important
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-pagination-bullet-active {
	width: 20px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-pagination-bullet:hover {
	height: 6px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_btn_prev {
	width: 28px;
	height: 28px;
	margin: 5px auto 0
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_video_button span {
	width: 28px;
	height: 28px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_btn_next {
	width: 28px;
	height: 28px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_btn_prev::after {
	font-size: 12px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_btn_next::after {
	font-size: 12px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-container {
	height: 30vh;
	margin-top: 60px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_cspan {
	margin-top: 0px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_video_button svg {
	width: 12px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-pagination {
	right: auto;
	top: auto;
	bottom: 15px;
	left: auto;
	width: 100%;
	justify-content: center;
	height: auto;
	transform: unset;
	flex-direction: row
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .videoContent video {
	height: 100%;
	width: auto
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_scrool span {
	display: none
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_btitle {
	margin-top: 5px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_btitle {
	letter-spacing: 0px;
	font-size: 14px !important;
	padding-left: 0px
}
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .swiper-container {
	height: 22vh
}
}
@media screen and (min-width: 769px) {
#c_banner_015_P_052-1652857574826 .e_bannerA-2 .p_summary {
	max-width: fit-content;
	text-shadow: 3px 0 10px rgb(22 78 145 / 40%);
	padding: 12px 18px 15px 0px;
	letter-spacing: 0.3vw
}
}
#c_effect_099-1667545646314 {
	min-height: 60px;
	display-radio: 1;
	height: 60px;
	max-height: 60px;
	background-color: rgba(255, 255, 255, 1);
	padding-top: 0px;
	padding-bottom: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	position: absolute;
	top: auto;
	left: 0px;
	z-index: 1;
	width: 100%;
	bottom: auto
}
#c_effect_099-1667545646314 .e_image-1 {
	overflow: hidden;
	display-radio: 1
}
#c_effect_099-1667545646314 .e_image-1 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}
.waves {
	position: absolute;
	width: 100%;
	height: 150px;
	bottom: 0px;
	z-index: 1;
	min-height: 150px
}/* Animation */
.parallax>use {
	animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite
}
.parallax>use:nth-child(1) {
	animation-delay: -2s;
	animation-duration: 7s
}
.parallax>use:nth-child(2) {
	animation-delay: -3s;
	animation-duration: 10s
}
.parallax>use:nth-child(3) {
	animation-delay: -4s;
	animation-duration: 13s
}
.parallax>use:nth-child(4) {
	animation-delay: -5s;
	animation-duration: 20s
}
@keyframes move-forever {
0% {
transform:translate3d(-90px, 0, 0)
}
100% {
transform:translate3d(85px, 0, 0)
}
}/*Shrinking for mobile*/
@media (max-width:768px) {
.waves {
	height: 40px;
	min-height: 40px
}
}
@media screen and (max-width:768px) {
#c_effect_099-1667545646314 {
	display: none
}
}
@media screen and (min-width: 769px) {
#c_effect_099-1667545646314 {
	display: none
}
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
}
#c_static_001_P_55426-1725614768761 {
	min-height: 300px;
	display-radio: 1;
	background-color: rgba(241,243,247,1);
	overflow: hidden
}
#c_static_001_P_55426-1725614768761 .e_container-1 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	background_radio: 1;
	display-radio: flex
}
#c_static_001_P_55426-1725614768761 .e_container-1 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_static_001_P_55426-1725614768761 .e_image-2 {
	overflow: hidden;
	position: relative;
	z-index: 1
}
#c_static_001_P_55426-1725614768761 .e_image-2 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}
#c_static_001_P_55426-1725614768761 .e_image-3 {
	overflow: hidden;
	display-radio: 1;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
	mix-blend-mode: color-dodge
}
#c_static_001_P_55426-1725614768761 .e_image-3 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}
#c_static_001_P_55426-1725614768761 .e_text-4 {
	line-height: 0.8;
	font_radio: 2;
	display-radio: 1;
	font-size: 25vw;
	white-space: nowrap;
	color: #daedfc;
	font-family: "40b36b48-3276-4ab1-9b6c-2ef290d034de";
	position: absolute;
	top: auto;
	left: 0px;
	z-index: 0;
	bottom: -3%
}
#c_static_001_P_55426-1725614768761 .e_text-4::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	height: 110%;
	top: -10%;
	width: 100%;
	background: linear-gradient(to bottom, rgba(241, 243, 247, 1) 5%, rgba(241, 243, 247, 0) 100%)
}
#c_static_001_P_55426-1725614768761 .e_container-5 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	position: absolute;
	z-index: 3;
	display-radio: flex;
	top: -40px;
	left: 0px;
	height: 100%;
	background_radio: 1
}
#c_static_001_P_55426-1725614768761 .e_container-5 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%;
	display: flex;
	align-items: center
}
#c_static_001_P_55426-1725614768761 .e_container-6 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex;
	max-width: 40vw;
	margin-right: 10%;
	margin-left: auto;
	background_radio: 1
}
#c_static_001_P_55426-1725614768761 .e_container-6 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_static_001_P_55426-1725614768761 .e_richText-8 {
	font_radio: 2;
	display-radio: 1;
	font-size: 16px;
	color: rgba(102,102,102,1);
	line-height: 1.8;
	margin-top: 4%
}
#c_static_001_P_55426-1725614768761 .e_button-9 {
	display: block;
	position: relative;
	overflow: hidden;
	text-align: center;
	box-sizing: border-box;
	border-radius: 0px;
	padding: 8px;
	background_radio: 1;
	border_radio: 1;
	font_radio: 1;
	radius_radio: 1;
	display-radio: block;
	margin-left: 0px;
	margin-right: auto;
	width: auto;
	max-width: 180px;
	padding-top: 12px;
	padding-bottom: 12px;
	background: #003893;
	box-shadow: 0 10px 20px rgb(0 92 171 / 10%);
	border: none;
	transition: all .5s ease;
	background-color: #003893;
	margin-top: 10%;
	margin-bottom: 8%
}
#c_static_001_P_55426-1725614768761 .e_button-9 span {
	display: block;
	width: 100%;
	position: relative;
	z-index: 1;
	outline: 0;
	margin: 0px;
	overflow: hidden
}
#c_static_001_P_55426-1725614768761 .e_button-9::after {
	content: "";
	position: absolute;
	width: 0;
	height: 100%;
	transition: all .3s;
	z-index: 0;
	opacity: 0;
	top: 0;
	left: 0px
}
#c_static_001_P_55426-1725614768761 .e_button-9:hover::after {
	opacity: 1
}
#c_static_001_P_55426-1725614768761 .e_button-9:hover {
	background: rgb(28 119 190);
	box-shadow: 0 10px 20px rgb(28 119 190 / 30%);
	background-color: rgb(28 119 190)
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	max-width: 100%
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_loopitem {
	flex: 0 0 33.3%;
	position: relative
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_page {
	text-align: center
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_filter_wrapper {
	width: 100%;
	font-size: 13px
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_kv_wrapper {
	display: flex;
	flex-wrap: nowrap;
	line-height: 40px;
	margin: 15px 0
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_filter_key {
	width: 70px;
	overflow: hidden;
	margin-right: 10px;
	font-weight: bold;
	color: #333333;
	font-size: 12px
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_v_item {
	display: inline-block;
	padding: 0 3px;
	cursor: pointer;
	font-size: 13px;
	color: #555555;
	margin-right: 30px
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_active .p_fbutton {
	color: #fff;
	background-color: cornflowerblue
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_result_item {
	position: relative;
	padding: 3px 20px 3px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	margin-right: 10px
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_filter_close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 3px;
	font-style: normal;
	font-size: 16px;
	margin-top: -5px;
	cursor: pointer
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .multSelect {
	font-size: 13px;
	position: relative
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .multSelect .inputWrap {
	width: 100%;
	min-width: 100px;
	min-height: 24px;
	border: 1px solid #DCDFE6;
	border-radius: 3px;
	position: relative;
	cursor: pointer;
	background: white
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .multSelect.is-invalid .inputWrap {
	border-color: #dc3545
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .multSelect ul {
	padding: 0 5px;
	margin: 0;
	padding-right: 35px
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .multSelect ul, li {
	list-style: none
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .multSelect li {
	display: inline-block;
	background: #edf0f3;
	color: #92969c;
	padding: 0px 5px;
	margin: 1px 5px 1px 0;
	border-radius: 5px;
	line-height: 16px
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .multSelect .multSelect-option {
	width: 100%;
	border: 1px solid #DCDFE6;
	border-radius: 2px;
	border-top: 0;
	max-height: 200px;
	overflow-y: scroll;
	position: absolute;
	height: 0;
	opacity: 0;
	z-index: 9;
	background: #fff
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .multSelect .multSelect-option>div {
	line-height: 24px;
	cursor: pointer;
	padding: 0 10px
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .multSelect .multSelect-option>div.selected {
	color: #409eff
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .multSelect .multSelect-option>div:hover {
	color: #409eff;
	background: #f3f6f9
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .multSelect .fa-close {
	font-style: normal;
	font-size: 12px;
	padding: 0 5px 0 7px
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .multSelect .inputWrap>.fa svg {
	fill: #666;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 0;
	top: calc(50% - 3px)
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .multSelect .inputWrap>.fa-down svg {
	transform: rotate(-90deg)
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .multSelect .inputWrap>.fa-up svg {
	transform: rotate(90deg)
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .multSelect .placeholder {
	line-height: 40px;
	padding-left: 10px;
	color: #aaa;
	position: absolute;
	left: 0;
	top: 0
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_normal_start {
	display: inline;
	width: 100px;
	height: 40px
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_date_start {
	display: inline;
	width: 105px;
	height: 40px
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_normal_end {
	display: inline;
	width: 100px;
	height: 40px;
	margin-right: 5px
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_date_end {
	display: inline;
	width: 105px;
	height: 40px;
	margin-right: 5px
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_split {
	margin: 0 5px
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_normal {
	margin-right: 16px
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_fbutton {
	background-color: #007bff;
	border: 1px solid #409EFF;
	text-decoration: none;
	color: white;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .input-check, .e_loop-10 .input-radio {
	margin: 0 5px;
	vertical-align: text-top
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .position-left {
	display: flex
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .position-right {
	display: flex;
	flex-direction: row-reverse
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .position-bottom {
	display: flex;
	flex-direction: column-reverse
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_mbutton {
	border: 1px solid #409EFF;
	text-decoration: none;
	color: #409EFF;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_mbutton:after {
	content: "";
	display: none;
	width: 16px;
	height: 16px;
	background-color: #409eff;
	-webkit-transform: skewY( -45deg);
	transform: skewY( 360deg);
	position: absolute;
	bottom: 0px;
	right: 0;
	z-index: 1
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_mbutton::before {
	content: "";
	display: none;
	width: 6px;
	height: 9px;
	border-right: #ffffff solid 2px;
	border-bottom: #ffffff solid 2px;
	-webkit-transform: rotate( 35deg);
	transform: rotate( 35deg);
	position: absolute;
	bottom: 5px;
	right: 4px;
	z-index: 2
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_active .p_mbutton::before {
	display: block
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_active .p_mbutton::after {
	display: block
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_input_match {
	width: 100px;
	height: 40px;
	padding: 10px;
	border: 1px solid #ced4da;
	border-radius: 3px
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_filter_result {
	display: none
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_contclear {
	cursor: pointer;
	display: none
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .swiper-container {
	padding-bottom: 30px
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_imgwrapper {
	width: 80px;
	height: 100px;
	overflow: hidden
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_imgtitle {
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	margin: 0 auto;
	line-height: 20px
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_imgwrapper img {
	width: 100%;
	object-fit: cover
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_active .p_imgwrapper {
	border: 1px solid #409eff
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_inputRangeSearch {
	padding: 7px 12px;
	background: #007bff;
	color: white;
	font-size: 14px;
	font-style: normal
}
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_inputSearch {
	padding: 0px 17px;
	background: #007bff;
	color: white;
	font-size: 14px;
	font-style: normal;
	height: 40px;
	display: inline-block;
	vertical-align: middle;
	border-radius: 5px;
	margin-left: 10px
}
#c_static_001_P_55426-1725614768761 .e_container-11 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex;
	padding-left: 0px;
	padding-right: 20px
}
#c_static_001_P_55426-1725614768761 .e_container-11::before {
	content: '';
	position: absolute;
	width: 1px;
	height: 50%;
	right: 0px;
	top: 25%;
	background: rgba(255,255,255,0.2)
}
#c_static_001_P_55426-1725614768761 .e_container-11 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_static_001_P_55426-1725614768761 .e_scrollNumber-13 {
	line-height: 1;
	font-size: 3.2vw;
	font_radio: 2;
	display-radio: 1;
	text-align: left;
	height: auto;
	font-family: "173b3085-35e0-4142-a433-811261f2d29e";
	color: #003893;
	margin-bottom: 3%
}
#c_static_001_P_55426-1725614768761 .e_scrollNumber-13 .p_plus {
	display-radio: 1;
	font-size: 16px;
	color: #003893;
	margin-left: -10px
}
#c_static_001_P_55426-1725614768761 .e_text-14 {
	line-height: normal;
	font_radio: 2;
	display-radio: 1;
	text-align: left;
	color: #666666;
	font-size: 16px
}
#c_static_001_P_55426-1725614768761 .e_richText-15 {
	font_radio: 2;
	display-radio: 1;
	font-size: 50px;
	color: rgba(0,0,0,1);
	line-height: 1
}
#c_static_001_P_55426-1725614768761 .e_richText-15 p span {
	font-family: "6d5f00f6-3c26-47fd-b3fa-0f78768daa4c" !important;
	color: #003893;
	font-size: 80px
}
#c_static_001_P_55426-1725614768761 .e_icon-16 {
	width: 40px;
	height: 40px;
	font_radio: 2;
	display-radio: 1;
	font-size: 16px;
	color:#003893;
	line-height: 1;
	margin-bottom: 5%
}
#c_static_001_P_55426-1725614768761 .e_icon-16 .icon {
	margin: 0;
	width: 100%;
	height: 100%;
	fill: currentColor
}
#c_static_001_P_55426-1725614768761 .e_loop-10 {
	display-radio: 1;
	margin-top: 5%
}
#c_static_001_P_55426-1725614768761 .e_html-17 {
	min-height: 0px;
	background_radio: 1;
	display-radio: 1
}
#c_static_001_P_55426-1725614768761 .e_container-18 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	background_radio: 1;
	display-radio: flex
}
#c_static_001_P_55426-1725614768761 .e_container-18 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_static_001_P_55426-1725614768761 .e_container-18 .p_item {
	display-radio: 1
}
#c_static_001_P_55426-1725614768761 .e_video-20 {
	width: 100%;
	position: relative;
	display-radio: 1;
	max-width: 827px;
	margin-left: auto;
	margin-right: 0px;
	margin-top: 70px
}
#c_static_001_P_55426-1725614768761 .e_video-20 video {
	width: 100%;
	display: block
}
#c_static_001_P_55426-1725614768761 .e_video-20 .p_video {
	position: relative
}
#c_static_001_P_55426-1725614768761 .e_video-20 .cover {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0
}
#c_static_001_P_55426-1725614768761 .e_video-20 .cover .coverImage {
	width: 100%;
	height: 100%
}
#c_static_001_P_55426-1725614768761 .e_video-20 .cover .coverImage img {
	width: 100%;
	height: 100%;
	object-fit: contain
}
#c_static_001_P_55426-1725614768761 .e_video-20 .cover .playBtn {
	position: absolute;
	width: 80px;
	height: 80px;
	z-index: 2;
	left: 50%;
	top: 50%;
	margin: -40px auto auto -40px;
	cursor: pointer
}
@media screen and (max-width:768px) {
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_loopitem {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: calc(100% / 3)
}
#c_static_001_P_55426-1725614768761 .e_container-11 {
	display-radio: 1;
	margin-bottom: 15px
}
#c_static_001_P_55426-1725614768761 .e_scrollNumber-13 {
	font_radio: 2;
	display-radio: 1;
	font-size: 30px;
	line-height: 1.5;
	max-height: none;
	min-height: 0px;
	height: 40px
}
#c_static_001_P_55426-1725614768761 .e_scrollNumber-13 .p_plus {
	display-radio: 1;
	font-size: 12px;
	margin-left: -5px
}
#c_static_001_P_55426-1725614768761 .e_text-14 {
	font_radio: 2;
	display-radio: 1;
	font-size: 14px;
	line-height: 1.5
}
#c_static_001_P_55426-1725614768761 .e_container-5 {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
	height: auto
}
#c_static_001_P_55426-1725614768761 .e_container-6 {
	width: 90%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto
}
#c_static_001_P_55426-1725614768761 .e_richText-15 {
	font-size: 24px;
	text-align: right
}
#c_static_001_P_55426-1725614768761 .e_richText-15 p span {
	font-size: 46px
}
#c_static_001_P_55426-1725614768761 .e_richText-8 {
	font-size: 14px
}
#c_static_001_P_55426-1725614768761 .e_richText-8 span {
	font-size: 16px !important
}
#c_static_001_P_55426-1725614768761 .e_icon-16 {
	width: 28px;
	height: 28px;
	margin-bottom: 3%
}
#c_static_001_P_55426-1725614768761 .e_button-9 {
	max-width: 120px;
	margin-top: 5%;
	margin-bottom: 0%
}
#c_static_001_P_55426-1725614768761 .e_image-2 {
	position: absolute;
	left: 0;
	top: 0
}
#c_static_001_P_55426-1725614768761 .e_container-18 {
	background_radio: 1;
	display-radio: 1;
	flex-direction: column
}
}
@media screen and (min-width: 769px) {
#c_static_001_P_55426-1725614768761 .e_loop-10 .p_loopitem {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: calc(100% / 3)
}
#c_static_001_P_55426-1725614768761:after {
	content: '';
	position: absolute;
	width: 347px;
	height: 623px;
	background: url(../image/f4892a5a-ca08-4852-8105-7bfc95ca3468.png) no-repeat center/cover;
	right: 0;
	bottom: 0;
	z-index: 1;
	opacity: 0.03
}
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
#c_static_001_P_55426-1725614768761 .e_scrollNumber-13 {
	font_radio: 2;
	display-radio: 1;
	font-size: 30px;
	line-height: 1.2
}
#c_static_001_P_55426-1725614768761 .e_scrollNumber-13 .p_plus {
	display-radio: 1;
	font-size: 14px
}
#c_static_001_P_55426-1725614768761 .e_text-14 {
	font_radio: 2;
	display-radio: 1;
	font-size: 14px;
	line-height: 1.5
}
#c_static_001_P_55426-1725614768761 .e_container-6 {
	max-width: 45vw;
	margin-right: 8%
}
#c_static_001_P_55426-1725614768761 .e_button-9 {
	margin-top: 8%;
	max-width: 120px;
	margin-bottom: 0px
}
#c_static_001_P_55426-1725614768761 .e_richText-15 {
	font-size: 30px
}
#c_static_001_P_55426-1725614768761 .e_richText-15 p span {
	font-size: 50px
}
#c_static_001_P_55426-1725614768761 .e_richText-8 p span {
	font-size: 18px !important
}
#c_static_001_P_55426-1725614768761 .e_richText-8 {
	margin-top: 3%;
	font-size: 14px
}
#c_static_001_P_55426-1725614768761 .e_loop-10 {
	margin-top: 4%
}
#c_static_001_P_55426-1725614768761 .e_icon-16 {
	width: 30px;
	height: 30px
}
}
#c_product_list_130-1654585127473 {
	min-height: 300px;
	display-radio: 1;
	padding-top: 90px;
	padding-bottom: 90px;
	background-fill-value: background-image;
	background-image: url(../image/c9a879a7-36f0-4130-8df4-43d53319f76f.jpg);
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	background_radio: 2
}
#c_product_list_130-1654585127473 .e_text-11 {
	display-radio: 1;
	font_radio: 2;
	max-width: none;
	margin-left: auto;
	margin-right: auto;
	font-size: 16px;
	text-align: left;
	line-height: 1.5;
	margin-top: 0px;
	margin-bottom: 35px;
	color: rgba(246,245,245,1)
}
#c_product_list_130-1654585127473 .e_container-24 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 94%;
	background_radio: 1;
	display-radio: flex;
	margin-right: auto;
	max-width: 124px;
	margin-left: 0px
}
#c_product_list_130-1654585127473 .e_container-24 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_product_list_130-1654585127473 .e_text-25 {
	min-height: 40px;
	font-family: Arial;
	font-size: 16px;
	color: #fff;
	font_radio: 2;
	display-radio: 1;
	text-align: left;
	margin-top: 60px;
	line-height: 2.5
}
#c_product_list_130-1654585127473 .e_text-25 .cicle {
	width: 48px;
	height: 48px;
	position: absolute;
	background: #456cc1;
	border-radius: 50px;
	left: 0px;
	z-index: 0
}
#c_product_list_130-1654585127473 .e_text-25 span.word {
	position: absolute;
	z-index: 1;
	bottom: -9px
}
#c_product_list_130-1654585127473 .e_container-26 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 94%;
	padding-left: 0px;
	margin-right: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	display-radio: flex;
	margin-left: auto;
	background_radio: 1;
	max-width: 1600px;
	padding-bottom: 10px
}
#c_product_list_130-1654585127473 .e_container-26 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_product_list_130-1654585127473 .e_container-26 .p_item {
	display-radio: 1
}
#c_product_list_130-1654585127473 .e_text-27 {
	font_radio: 2;
	margin-right: auto;
	margin-top: 5px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	color: rgba(250,250,250,1);
	text-align: left;
	line-height: 1;
	display-radio: 1;
	margin-left: auto;
	font-weight: bold
}
#c_product_list_130-1654585127473 .e_line-28 {
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: rgba(139,139,139,1);
	max-width: 22px;
	width: 20%;
	display-radio: 1;
	margin-left: 0px;
	margin-right: auto;
	margin-top: 25px;
	margin-bottom: 15px
}
#c_product_list_130-1654585127473 .e_h3-29 {
	font_radio: 2;
	display-radio: 1;
	font-size: 40px;
	margin-top: 0px;
	font-family: "0aec771c-7972-4d72-9115-5e2b37598e45";
	font-weight: bold;
	margin-bottom: 20px;
	color: rgba(255,255,255,1)
}
#c_product_list_130-1654585127473 .e_container-31 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 94%;
	padding-left: 0px;
	margin-right: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	display-radio: flex;
	margin-left: auto;
	background_radio: 1;
	max-width: 1600px;
	padding-bottom: 0px
}
#c_product_list_130-1654585127473 .e_container-31 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_product_list_130-1654585127473 .e_container-31 .p_item {
	display-radio: 1
}
#c_product_list_130-1654585127473 .e_text-35 {
	display-radio: 1;
	font_radio: 2;
	max-width: none;
	margin-left: auto;
	margin-right: auto;
	font-size: 16px;
	text-align: left;
	line-height: 1.5;
	margin-top: 0px;
	margin-bottom: 35px;
	color: rgba(224,224,224,1)
}
#c_product_list_130-1654585127473 .e_loop-36 .p_list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	max-width: 100%
}
#c_product_list_130-1654585127473 .e_loop-36 .p_loopitem {
	flex: 0 0 33.3%;
	position: relative
}
#c_product_list_130-1654585127473 .e_loop-36 .p_page {
	text-align: center
}
#c_product_list_130-1654585127473 .e_loop-36 .p_filter_wrapper {
	width: 100%;
	font-size: 13px
}
#c_product_list_130-1654585127473 .e_loop-36 .p_kv_wrapper {
	display: flex;
	flex-wrap: nowrap;
	line-height: 40px;
	margin: 15px 0
}
#c_product_list_130-1654585127473 .e_loop-36 .p_filter_key {
	width: 70px;
	overflow: hidden;
	margin-right: 10px;
	font-weight: bold;
	color: #333333;
	font-size: 12px
}
#c_product_list_130-1654585127473 .e_loop-36 .p_v_item {
	display: inline-block;
	padding: 0 3px;
	cursor: pointer;
	font-size: 13px;
	color: #555555;
	margin-right: 30px
}
#c_product_list_130-1654585127473 .e_loop-36 .p_active .p_fbutton {
	color: #fff;
	background-color: cornflowerblue
}
#c_product_list_130-1654585127473 .e_loop-36 .p_result_item {
	position: relative;
	padding: 3px 20px 3px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	margin-right: 10px
}
#c_product_list_130-1654585127473 .e_loop-36 .p_filter_close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 3px;
	font-style: normal;
	font-size: 16px;
	margin-top: -5px;
	cursor: pointer
}
#c_product_list_130-1654585127473 .e_loop-36 .multSelect {
	font-size: 13px;
	position: relative
}
#c_product_list_130-1654585127473 .e_loop-36 .multSelect .inputWrap {
	width: 100%;
	min-width: 100px;
	min-height: 24px;
	border: 1px solid #DCDFE6;
	border-radius: 3px;
	position: relative;
	cursor: pointer;
	background: white
}
#c_product_list_130-1654585127473 .e_loop-36 .multSelect.is-invalid .inputWrap {
	border-color: #dc3545
}
#c_product_list_130-1654585127473 .e_loop-36 .multSelect ul {
	padding: 0 5px;
	margin: 0;
	padding-right: 35px
}
#c_product_list_130-1654585127473 .e_loop-36 .multSelect ul, li {
	list-style: none
}
#c_product_list_130-1654585127473 .e_loop-36 .multSelect li {
	display: inline-block;
	background: #edf0f3;
	color: #92969c;
	padding: 0px 5px;
	margin: 1px 5px 1px 0;
	border-radius: 5px;
	line-height: 16px
}
#c_product_list_130-1654585127473 .e_loop-36 .multSelect .multSelect-option {
	width: 100%;
	border: 1px solid #DCDFE6;
	border-radius: 2px;
	border-top: 0;
	max-height: 200px;
	overflow-y: scroll;
	position: absolute;
	height: 0;
	opacity: 0;
	z-index: 9;
	background: #fff
}
#c_product_list_130-1654585127473 .e_loop-36 .multSelect .multSelect-option>div {
	line-height: 24px;
	cursor: pointer;
	padding: 0 10px
}
#c_product_list_130-1654585127473 .e_loop-36 .multSelect .multSelect-option>div.selected {
	color: #409eff
}
#c_product_list_130-1654585127473 .e_loop-36 .multSelect .multSelect-option>div:hover {
	color: #409eff;
	background: #f3f6f9
}
#c_product_list_130-1654585127473 .e_loop-36 .multSelect .fa-close {
	font-style: normal;
	font-size: 12px;
	padding: 0 5px 0 7px
}
#c_product_list_130-1654585127473 .e_loop-36 .multSelect .inputWrap>.fa svg {
	fill: #666;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 0;
	top: calc(50% - 3px)
}
#c_product_list_130-1654585127473 .e_loop-36 .multSelect .inputWrap>.fa-down svg {
	transform: rotate(-90deg)
}
#c_product_list_130-1654585127473 .e_loop-36 .multSelect .inputWrap>.fa-up svg {
	transform: rotate(90deg)
}
#c_product_list_130-1654585127473 .e_loop-36 .multSelect .placeholder {
	line-height: 40px;
	padding-left: 10px;
	color: #aaa;
	position: absolute;
	left: 0;
	top: 0
}
#c_product_list_130-1654585127473 .e_loop-36 .p_normal_start {
	display: inline;
	width: 100px;
	height: 40px
}
#c_product_list_130-1654585127473 .e_loop-36 .p_date_start {
	display: inline;
	width: 105px;
	height: 40px
}
#c_product_list_130-1654585127473 .e_loop-36 .p_normal_end {
	display: inline;
	width: 100px;
	height: 40px;
	margin-right: 5px
}
#c_product_list_130-1654585127473 .e_loop-36 .p_date_end {
	display: inline;
	width: 105px;
	height: 40px;
	margin-right: 5px
}
#c_product_list_130-1654585127473 .e_loop-36 .p_split {
	margin: 0 5px
}
#c_product_list_130-1654585127473 .e_loop-36 .p_normal {
	margin-right: 16px
}
#c_product_list_130-1654585127473 .e_loop-36 .p_fbutton {
	background-color: #007bff;
	border: 1px solid #409EFF;
	text-decoration: none;
	color: white;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}
#c_product_list_130-1654585127473 .e_loop-36 .input-check, .e_loop-36 .input-radio {
	margin: 0 5px;
	vertical-align: text-top
}
#c_product_list_130-1654585127473 .e_loop-36 .position-left {
	display: flex
}
#c_product_list_130-1654585127473 .e_loop-36 .position-right {
	display: flex;
	flex-direction: row-reverse
}
#c_product_list_130-1654585127473 .e_loop-36 .position-bottom {
	display: flex;
	flex-direction: column-reverse
}
#c_product_list_130-1654585127473 .e_loop-36 .p_mbutton {
	border: 1px solid #409EFF;
	text-decoration: none;
	color: #409EFF;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}
#c_product_list_130-1654585127473 .e_loop-36 .p_mbutton:after {
	content: "";
	display: none;
	width: 16px;
	height: 16px;
	background-color: #409eff;
	-webkit-transform: skewY( -45deg);
	transform: skewY( 360deg);
	position: absolute;
	bottom: 0px;
	right: 0;
	z-index: 1
}
#c_product_list_130-1654585127473 .e_loop-36 .p_mbutton::before {
	content: "";
	display: none;
	width: 6px;
	height: 9px;
	border-right: #ffffff solid 2px;
	border-bottom: #ffffff solid 2px;
	-webkit-transform: rotate( 35deg);
	transform: rotate( 35deg);
	position: absolute;
	bottom: 5px;
	right: 4px;
	z-index: 2
}
#c_product_list_130-1654585127473 .e_loop-36 .p_active .p_mbutton::before {
	display: block
}
#c_product_list_130-1654585127473 .e_loop-36 .p_active .p_mbutton::after {
	display: block
}
#c_product_list_130-1654585127473 .e_loop-36 .p_input_match {
	width: 100px;
	height: 40px;
	padding: 10px;
	border: 1px solid #ced4da;
	border-radius: 3px
}
#c_product_list_130-1654585127473 .e_loop-36 .p_filter_result {
	display: none
}
#c_product_list_130-1654585127473 .e_loop-36 .p_contclear {
	cursor: pointer;
	display: none
}
#c_product_list_130-1654585127473 .e_loop-36 .swiper-container {
	padding-bottom: 50px
}
#c_product_list_130-1654585127473 .e_loop-36 .p_imgwrapper {
	width: 80px;
	height: 100px;
	overflow: hidden
}
#c_product_list_130-1654585127473 .e_loop-36 .p_imgtitle {
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	margin: 0 auto;
	line-height: 20px
}
#c_product_list_130-1654585127473 .e_loop-36 .p_imgwrapper img {
	width: 100%;
	object-fit: cover
}
#c_product_list_130-1654585127473 .e_loop-36 .p_active .p_imgwrapper {
	border: 1px solid #409eff
}
#c_product_list_130-1654585127473 .e_loop-36 .p_inputRangeSearch {
	padding: 7px 12px;
	background: #007bff;
	color: white;
	font-size: 14px;
	font-style: normal
}
#c_product_list_130-1654585127473 .e_loop-36 .p_inputSearch {
	padding: 0px 17px;
	background: #007bff;
	color: white;
	font-size: 14px;
	font-style: normal;
	height: 40px;
	display: inline-block;
	vertical-align: middle;
	border-radius: 5px;
	margin-left: 10px
}
#c_product_list_130-1654585127473 .e_container-37 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%
}
#c_product_list_130-1654585127473 .e_container-37 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_product_list_130-1654585127473 .e_container-37:hover .e_image-39:before {
	left: 150%;
	-moz-transition: 1s;
	-o-transition: 1s;
	-webkit-transition: 1s;
	transition: 1s
}
#c_product_list_130-1654585127473 .e_container-38 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	background-color: rgba(255,255,255,1);
	box-shadow: 0 5px 20px rgb(0 0 0 / 15%)
}
#c_product_list_130-1654585127473 .e_container-38 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_product_list_130-1654585127473 .e_image-39 {
	overflow: hidden;
	position: relative
}
#c_product_list_130-1654585127473 .e_image-39:before {
	content: '';
	position: absolute;
	left: -100%;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: -webkit-linear-gradient(0deg, rgba(255,255,255,0), rgba(255,255,255,.5), rgba(255,255,255,0));
	transform: skewx(-25deg);
	z-index: 1
}
#c_product_list_130-1654585127473 .e_image-39 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}
#c_product_list_130-1654585127473 .e_container-40 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex
}
#c_product_list_130-1654585127473 .e_container-40 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_product_list_130-1654585127473 .e_container-40 .cbox-40-0 {
	padding-top: 21px;
	padding-left: 25px;
	padding-bottom: 21px;
	padding-right: 25px
}
#c_product_list_130-1654585127473 .e_container-40 .cbox-40-1 {
	flex: 0 0 100px
}
#c_product_list_130-1654585127473 .e_text-41 {
	line-height: 1.5;
	font_radio: 2;
	display-radio: 1;
	font-size: 18px;
	color: rgba(34,34,34,1);
	font-weight: bold
}
#c_product_list_130-1654585127473 .e_richText-42 {
	font_radio: 2;
	display-radio: -webkit-box;
	font-size: 14px;
	color: rgba(168,168,168,1);
	line-height: 1.5;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-top: 10px
}
@media screen and (max-width:768px) {
#c_product_list_130-1654585127473 .e_text-11 {
	display-radio: 1;
	font_radio: 2;
	font-size: 12px;
	color: rgba(255,255,255,1);
	line-height: 1.5;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 5px
}
#c_product_list_130-1654585127473 .e_container-24 {
	background_radio: 1;
	display-radio: 1;
	width: auto
}
#c_product_list_130-1654585127473 .e_container-26 {
	margin-left: auto;
	margin-right: auto;
	background_radio: 1;
	display-radio: 1
}
#c_product_list_130-1654585127473 .e_h3-29 {
	font_radio: 2;
	display-radio: 1;
	font-size: 30px
}
#c_product_list_130-1654585127473 .e_container-31 {
	margin-left: auto;
	margin-right: auto
}
#c_product_list_130-1654585127473 .e_loop-36 .p_loopitem {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: calc(100% / 1)
}
#c_product_list_130-1654585127473 .e_loop-36 .swiper-container {
	padding-bottom: 40px
}
#c_product_list_130-1654585127473 .e_container-37:hover .e_text-41 {
	color: #ffffff
}
#c_product_list_130-1654585127473 .e_container-37:hover .e_richText-42 {
	color: #ffffff
}
#c_product_list_130-1654585127473 .e_container-37:hover .e_container-40 {
	background: #de001f
}
#c_product_list_130-1654585127473 .e_container-40 .cbox-40-0 {
	padding: 10px
}
#c_product_list_130-1654585127473 .e_container-40 .cbox-40-1 {
	display: none
}
#c_product_list_130-1654585127473 .e_container-40 {
	transition: all .5s
}
#c_product_list_130-1654585127473 .e_text-41 {
	font-size: 16px;
	transition: all .5s
}
#c_product_list_130-1654585127473 .e_richText-42 {
	margin-top: 5px;
	transition: all .5s
}
#c_product_list_130-1654585127473 {
	background_radio: 2;
	display-radio: 1;
	background-fill-value: background-image;
	background-image: url(../image/dad64056-444e-4f1d-9c3e-b0774a053a31.jpg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-attachment: fixed
}
}
@media screen and (min-width: 769px) {
#c_product_list_130-1654585127473 .e_loop-36 .p_loopitem {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: calc(100% / 5)
}
}
#c_banner_021-16472468866750 {
	display-radio: 1;
	padding-top:40px;
	background-fill-value: background-image;
	background-image: url(https://omo-oss-image1.thefastimg.com/portal-saas/pg2024070117001423172/cms/image/0841bcae-c379-48a1-bdeb-a5874ddd1ff5.gif);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom center;
	background_radio: 2;
	padding-bottom: 0px
}
#c_banner_021-16472468866750 .cf_wrap {
	padding: 0
}
#c_banner_021-16472468866750 .fix:before {
	display: table;
	clear: both;
	content: ''
}
#c_banner_021-16472468866750 .fix:after {
	display: table;
	clear: both;
	content: ''
}
#c_banner_021-16472468866750 .cf_wrap .infor {
	text-align: center
}
#c_banner_021-16472468866750 .cf_wrap .infor .tit {
	font-size: 36px;
	color: #000;
	line-height: 1;
	margin-bottom: 30px
}
#c_banner_021-16472468866750 .cf_wrap .infor .con {
	font-size: 14px;
	color: #696969
}
#c_banner_021-16472468866750 .cf_wrap .content {
	height: auto;
	width: 100%;
	overflow: hidden;
	margin-top: 0px
}
#c_banner_021-16472468866750 .cf_wrap .content ul {
	width: 850px;
	height: 502px;
	margin: 0 auto;
	z-index: 2
}
#c_banner_021-16472468866750 .cf_wrap .content li {
	width: 850px;
	height: 502px
}
#c_banner_021-16472468866750 .cf_wrap .content li a {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	text-decoration: none;
	outline: 0
}
#c_banner_021-16472468866750 .cf_wrap .content li .list_box {
	-webkit-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
	transform: scale(0.9);
	background: #ddd
}
#c_banner_021-16472468866750 .imgZoom {
	overflow: hidden;
	-webkit-transform: rotate(0);
	transform: rotate(0)
}
#c_banner_021-16472468866750 .imgZoom img {
	-moz-transition: all .8s ease 0s;
	-ms-transition: all .8s ease 0s;
	-o-transition: all .8s ease 0s;
	-webkit-transition: all .8s ease 0s;
	transition: all .8s ease 0s
}
#c_banner_021-16472468866750 .imgZoom:hover img {
	-moz-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1)
}
#c_banner_021-16472468866750 .cf_wrap .content li .list_box ._full {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
*height:auto
}
#c_banner_021-16472468866750 .cf_wrap .content li .list_box img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
*height:auto
}
#c_banner_021-16472468866750 .cf_wrap .content li.roundabout-in-focus .list_box {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1)
}
#c_banner_021-16472468866750 .cf_wrap .content li.roundabout-in-focus .list_box img {
	opacity: 1;
	filter: alpha(opacity=100)
}
#c_banner_021-16472468866750 .cf_wrap .content .list_box {
	display: block;
	color: #fff;
	position: relative
}
#c_banner_021-16472468866750 .cf_wrap .content .list_text {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	visibility: hidden;
	opacity: 0
}
#c_banner_021-16472468866750 .cf_wrap .content .list_text:after {
	content: '';
	width: 100%;
	height: 282px;
	background: url(https://omo-oss-image.thefastimg.com/portal-saas/pg2024070117001423172/cms/image/b066fb34-0380-4d79-9a27-8ea2688dc513.png) repeat;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	opacity: 0.5
}
#c_banner_021-16472468866750 .cf_wrap .content .list_text .list_p {
	padding: 2% 4%;
	font-size: 22px;
	line-height: 38px;
	position: relative;
	z-index: 2;
	margin-bottom: 6px;
	text-align: center
}
#c_banner_021-16472468866750 .cf_wrap .content .rect-59 {
	padding-bottom: 59%;
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	overflow: hidden
}
#c_banner_021-16472468866750 .cf_wrap .content .list_hd {
	font-size: 18px
}
#c_banner_021-16472468866750 .cf_wrap .content .roundabout-in-focus .list_text {
	visibility: visible;
	opacity: 1
}
#c_banner_021-16472468866750 .cf_wrap .content .arr_btn {
	position: absolute;
	height: 455px;
	top: 20px;
	width: 150px;
	color: #fff;
	z-index: 300;
	text-align: center;
	writing-mode: tb-rl;
	line-height: 140px;
	font-family: Arial;
	font-size: 15px;
	letter-spacing: 2px;
	cursor: pointer;
	overflow: hidden
}
#c_banner_021-16472468866750 .cf_wrap .content .arr_btn:after {
	content: "";
	width: 2px;
	height: 0;
	background: #fff;
	display: block;
	position: absolute;
	bottom: 0;
	left: 52%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease
}
#c_banner_021-16472468866750 .cf_wrap .content .arr_btn:hover:after {
	height: 100px
}
#c_banner_021-16472468866750 .cf_wrap .content .arr_btn.arr_btn_prev {
	right: 100%
}
#c_banner_021-16472468866750 .cf_wrap .content .arr_btn.arr_btn_next {
	left: 100%
}
#c_banner_021-16472468866750 .cf_wrap .content .arr_btn_box {
	padding: 30px 0;
	font-size: 13px;
	color: #3d3d3d;
	width: 748px;
	margin: 0 auto;
	display: none
}
#c_banner_021-16472468866750 .cf_wrap .content .arr_btn_box .arr_btn02 {
	cursor: pointer
}
#c_banner_021-16472468866750 .cf_wrap .content .arr_btn_box .border {
	width: 50px;
	height: 1px;
	background: #cfcfd0;
	margin-top: 50%;
	display: inline-block;
	margin: 0 6px;
	vertical-align: middle;
*display:inline;
*zoom:1
}
#c_banner_021-16472468866750 .cf_wrap .content .arr_btn_box .arr_btn02:hover {
	color: #f08200
}
#c_banner_021-16472468866750 .cf_wrap .content .arr_btn_box .arr_btn02_l:hover:after {
	background: #f08200
}
#c_banner_021-16472468866750 .e_container-7 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 94%;
	padding-left: 0px;
	margin-right: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	display-radio: flex;
	margin-left: auto;
	background_radio: 1;
	max-width: 1600px;
	padding-bottom: 20px
}
#c_banner_021-16472468866750 .e_container-7 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_banner_021-16472468866750 .e_container-7 .p_item {
	display-radio: 1
}
#c_banner_021-16472468866750 .e_text-8 {
	font_radio: 2;
	margin-right: auto;
	margin-top: 5px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	color: rgba(191,191,191,1);
	text-align: center;
	line-height: 1;
	display-radio: 1;
	margin-left: auto;
	font-weight: bold
}
#c_banner_021-16472468866750 .e_line-9 {
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: rgba(139,139,139,1);
	max-width: 22px;
	width: 20%;
	display-radio: 1;
	margin-left: auto;
	margin-right: auto;
	margin-top: 25px;
	margin-bottom: 15px;
	line_radio: 1
}
#c_banner_021-16472468866750 .e_h3-10 {
	font_radio: 2;
	display-radio: 1;
	font-size: 40px;
	margin-top: 0px;
	font-family: "0aec771c-7972-4d72-9115-5e2b37598e45";
	font-weight: bold;
	margin-bottom: 20px;
	color: rgba(0,0,0,1);
	text-align: center
}
#c_banner_021-16472468866750 .e_text-11 {
	display-radio: 1;
	font_radio: 2;
	max-width: none;
	margin-left: auto;
	margin-right: auto;
	font-size: 16px;
	text-align: center;
	line-height: 1.5;
	margin-top: 0px;
	color: rgba(183,183,183,1);
	margin-bottom: 0px
}
#c_banner_021-16472468866750 .e_container-7 .cbox-7-1 {
	flex: 0 0 200px
}
@media screen and (max-width:768px) {
#c_banner_021-16472468866750 .cf_wrap .content {
	margin-top: 25px
}
#c_banner_021-16472468866750 .cf_wrap .content ul {
	width: 320px;
	height: 189px
}
#c_banner_021-16472468866750 .cf_wrap .content li {
	width: 320px;
	height: 189px
}
#c_banner_021-16472468866750 .cf_wrap .content .list_text .list_p {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 5px
}
#c_banner_021-16472468866750 .cf_wrap .content .arr_btn_box {
	padding: 20px 0 10px;
	display: block;
	width: auto;
	margin: 0 auto
}
#c_banner_021-16472468866750 .arr_btn_box .l {
	float: left
}
#c_banner_021-16472468866750 .arr_btn_box .r {
	float: right
}
#c_banner_021-16472468866750 .e_container-7 {
	margin-left: auto;
	margin-right: auto
}
#c_banner_021-16472468866750 .e_h3-10 {
	font_radio: 2;
	display-radio: 1;
	font-size: 30px
}
#c_banner_021-16472468866750 .e_text-11 {
	display-radio: 1;
	font_radio: 2;
	font-size: 12px;
	color: rgba(126,126,126,1);
	line-height: 1.5;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 5px
}
}
#c_static_001_P_58984-1729761836982 {
	display-radio: 1;
	padding-bottom: 100px;
	background_radio: 2;
	padding-top: 0px;
	min-height: 0px
}
#c_static_001_P_58984-1729761836982 .e_loop-1 .p_list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	max-width: 100%;
	display-radio: flex
}
#c_static_001_P_58984-1729761836982 .e_loop-1 .p_loopitem {
	flex: 0 0 33.3%;
	position: relative
}
#c_static_001_P_58984-1729761836982 .e_loop-1 .p_page {
	text-align: center
}
#c_static_001_P_58984-1729761836982 .e_loop-1 {
	display-radio: 1;
	margin-left: auto;
	margin-right: auto;
	height: auto;
	min-height: 0px;
	margin-bottom: 0px;
	width: 94%;
	max-width: 1600px;
	margin-top: 0px
}
#c_static_001_P_58984-1729761836982 .e_text-3 {
	line-height: normal;
	font_radio: 2;
	display-radio: 1;
	font-size: 24px;
	color: rgba(255,255,255,1);
	transition: all .5s;
	font-weight: bold;
	text-align: center;
	margin-top: 10px
}
#c_static_001_P_58984-1729761836982 .e_text-4 {
	line-height: 2;
	font_radio: 2;
	display-radio: 1;
	color: rgba(255,255,255,1);
	transition: all .5s;
	margin-top: 20px;
	margin-bottom: 30px;
	text-align: center;
	font-size: 14px
}
#c_static_001_P_58984-1729761836982 .e_container-15 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex;
	position: absolute;
	top: 0px;
	left: auto;
	z-index: 1;
	bottom: 0px;
	right: auto;
	padding-left: 10%;
	padding-right: 10%;
	padding-bottom: 10%;
	padding-top: 10%;
	background_radio: 1
}
#c_static_001_P_58984-1729761836982 .e_container-15 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%;
	height: auto;
	justify-content: center;
	display: flex;
	flex-direction: column
}
#c_static_001_P_58984-1729761836982 .e_image-16 {
	overflow: hidden;
	display-radio: 1;
	height: 450px;
	background: #053a7f;
	background-color: #053a7f
}
#c_static_001_P_58984-1729761836982 .e_image-16 img {
	width: 100%;
	height: 100%;
	object-fit: cover
}
#c_static_001_P_58984-1729761836982 .e_loop-1 .p_loopitem:hover .e_image-16 img {
	opacity: .3
}
#c_static_001_P_58984-1729761836982 .e_icon-25 {
	width: 60px;
	height: 60px;
	font_radio: 1;
	display-radio: 1;
	margin-left: auto;
	margin-right: auto;
	color: #ffffff;
	border: 1px solid #ffffff;
	padding: 10px;
	border-radius: 100px;
	margin-bottom: 20px
}
#c_static_001_P_58984-1729761836982 .e_icon-25 .icon {
	margin: 0;
	width: 100%;
	height: 100%;
	fill: currentColor
}
#c_static_001_P_58984-1729761836982 .e_line-26 {
	display-radio: 1;
	border-top-style: solid;
	border-top-width: 2px;
	width: 50px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0px;
	margin-top: 20px;
	line_radio: 1;
	border-color: #ffffff
}
@media screen and (max-width:768px) {
#c_static_001_P_58984-1729761836982 .e_loop-1 .p_loopitem {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: calc(100% / 1)
}
#c_static_001_P_58984-1729761836982 .e_image-16 {
	display-radio: 1;
	height: 400px
}
#c_static_001_P_58984-1729761836982 .e_text-4 {
	font_radio: 1;
	display-radio: 1;
	opacity: 1;
	display: block
}
}
@media screen and (min-width: 769px) {
#c_static_001_P_58984-1729761836982 .e_loop-1 .p_loopitem {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: calc(100% / 4);
	transition: all .5s;
	padding: 5px
}
}
#c_new_list_258-1721873340071 {
	min-height: 300px;
	display-radio: 1;
	background_radio: 2;
	padding-top: 40px;
	padding-bottom: 100px;
	background-color: rgba(249,249,249,1)
}
#c_new_list_258-1721873340071 .e_container-1 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 94%;
	display-radio: flex;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	padding-right: 0px;
	padding-bottom: 0px;
	justify-content: space-between;
	background_radio: 1;
	padding-left: 0px;
	padding-top: 0px
}
#c_new_list_258-1721873340071 .e_container-1 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_new_list_258-1721873340071 .e_loop-2 .p_list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	max-width: 100%
}
#c_new_list_258-1721873340071 .e_loop-2 .p_loopitem {
	position: relative;
	border-radius: 25px;
	overflow: hidden;
	flex: none !important;
	width: calc(50% - 10px);
	transition: all ease .6s;
	display: grid
}
#c_new_list_258-1721873340071 .e_loop-2 .p_loopitem > div {
	grid-area: 1/1/2/2
}
#c_new_list_258-1721873340071 .e_loop-2 .p_page {
	text-align: center
}
#c_new_list_258-1721873340071 .e_loop-2 .p_filter_wrapper {
	width: 100%;
	font-size: 13px
}
#c_new_list_258-1721873340071 .e_loop-2 .p_kv_wrapper {
	display: flex;
	flex-wrap: nowrap;
	line-height: 40px;
	margin: 15px 0
}
#c_new_list_258-1721873340071 .e_loop-2 .p_filter_key {
	width: 70px;
	overflow: hidden;
	margin-right: 10px;
	font-weight: bold;
	color: #333333;
	font-size: 12px
}
#c_new_list_258-1721873340071 .e_loop-2 .p_v_item {
	display: inline-block;
	padding: 0 3px;
	cursor: pointer;
	font-size: 13px;
	color: #555555;
	margin-right: 30px
}
#c_new_list_258-1721873340071 .e_loop-2 .p_active .p_fbutton {
	color: #fff;
	background-color: cornflowerblue
}
#c_new_list_258-1721873340071 .e_loop-2 .p_result_item {
	position: relative;
	padding: 3px 20px 3px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	margin-right: 10px
}
#c_new_list_258-1721873340071 .e_loop-2 .p_filter_close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 3px;
	font-style: normal;
	font-size: 16px;
	margin-top: -5px;
	cursor: pointer
}
#c_new_list_258-1721873340071 .e_loop-2 .p_s_option {
}
#c_new_list_258-1721873340071 .e_loop-2 .multSelect {
	font-size: 13px;
	position: relative
}
#c_new_list_258-1721873340071 .e_loop-2 .multSelect .inputWrap {
	width: 100%;
	min-width: 100px;
	min-height: 24px;
	border: 1px solid #DCDFE6;
	border-radius: 3px;
	position: relative;
	cursor: pointer;
	background: white
}
#c_new_list_258-1721873340071 .e_loop-2 .multSelect.is-invalid .inputWrap {
	border-color: #dc3545
}
#c_new_list_258-1721873340071 .e_loop-2 .multSelect ul {
	padding: 0 5px;
	margin: 0;
	padding-right: 35px
}
#c_new_list_258-1721873340071 .e_loop-2 .multSelect ul, li {
	list-style: none
}
#c_new_list_258-1721873340071 .e_loop-2 .multSelect li {
	display: inline-block;
	background: #edf0f3;
	color: #92969c;
	padding: 0px 5px;
	margin: 1px 5px 1px 0;
	border-radius: 5px;
	line-height: 16px
}
#c_new_list_258-1721873340071 .e_loop-2 .multSelect .multSelect-option {
	width: 100%;
	border: 1px solid #DCDFE6;
	border-radius: 2px;
	border-top: 0;
	max-height: 200px;
	overflow-y: scroll;
	position: absolute;
	height: 0;
	opacity: 0;
	z-index: 9;
	background: #fff
}
#c_new_list_258-1721873340071 .e_loop-2 .multSelect .multSelect-option>div {
	line-height: 24px;
	cursor: pointer;
	padding: 0 10px
}
#c_new_list_258-1721873340071 .e_loop-2 .multSelect .multSelect-option>div.selected {
	color: #409eff
}
#c_new_list_258-1721873340071 .e_loop-2 .multSelect .multSelect-option>div:hover {
	color: #409eff;
	background: #f3f6f9
}
#c_new_list_258-1721873340071 .e_loop-2 .multSelect .fa-close {
	font-style: normal;
	font-size: 12px;
	padding: 0 5px 0 7px
}
#c_new_list_258-1721873340071 .e_loop-2 .multSelect .inputWrap>.fa svg {
	fill: #666;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 0;
	top: calc(50% - 3px)
}
#c_new_list_258-1721873340071 .e_loop-2 .multSelect .inputWrap>.fa-down svg {
	transform: rotate(-90deg)
}
#c_new_list_258-1721873340071 .e_loop-2 .multSelect .inputWrap>.fa-up svg {
	transform: rotate(90deg)
}
#c_new_list_258-1721873340071 .e_loop-2 .multSelect .placeholder {
	line-height: 40px;
	padding-left: 10px;
	color: #aaa;
	position: absolute;
	left: 0;
	top: 0
}
#c_new_list_258-1721873340071 .e_loop-2 .p_normal_start {
	display: inline;
	width: 100px;
	height: 40px
}
#c_new_list_258-1721873340071 .e_loop-2 .p_date_start {
	display: inline;
	width: 105px;
	height: 40px
}
#c_new_list_258-1721873340071 .e_loop-2 .p_normal_end {
	display: inline;
	width: 100px;
	height: 40px;
	margin-right: 5px
}
#c_new_list_258-1721873340071 .e_loop-2 .p_date_end {
	display: inline;
	width: 105px;
	height: 40px;
	margin-right: 5px
}
#c_new_list_258-1721873340071 .e_loop-2 .p_split {
	margin: 0 5px
}
#c_new_list_258-1721873340071 .e_loop-2 .p_normal {
	margin-right: 16px
}
#c_new_list_258-1721873340071 .e_loop-2 .p_fbutton {
	background-color: #007bff;
	border: 1px solid #409EFF;
	text-decoration: none;
	color: white;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}
#c_new_list_258-1721873340071 .e_loop-2 .input-check, #c_new_list_258-1721873340071 .e_loop-2 .input-radio {
	margin: 0 5px;
	vertical-align: text-top
}
#c_new_list_258-1721873340071 .e_loop-2 .position-left {
	display: flex
}
#c_new_list_258-1721873340071 .e_loop-2 .position-right {
	display: flex;
	flex-direction: row-reverse
}
#c_new_list_258-1721873340071 .e_loop-2 .position-top {
}
#c_new_list_258-1721873340071 .e_loop-2 .position-bottom {
	display: flex;
	flex-direction: column-reverse
}
#c_new_list_258-1721873340071 .e_loop-2 .p_mbutton {
	border: 1px solid #409EFF;
	text-decoration: none;
	color: #409EFF;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}
#c_new_list_258-1721873340071 .e_loop-2 .p_mbutton:after {
	content: "";
	display: none;
	width: 16px;
	height: 16px;
	background-color: #409eff;
	-webkit-transform: skewY( -45deg);
	transform: skewY( 360deg);
	position: absolute;
	bottom: 0px;
	right: 0;
	z-index: 1
}
#c_new_list_258-1721873340071 .e_loop-2 .p_mbutton::before {
	content: "";
	display: none;
	width: 6px;
	height: 9px;
	border-right: #ffffff solid 2px;
	border-bottom: #ffffff solid 2px;
	-webkit-transform: rotate( 35deg);
	transform: rotate( 35deg);
	position: absolute;
	bottom: 5px;
	right: 4px;
	z-index: 2
}
#c_new_list_258-1721873340071 .e_loop-2 .p_active .p_mbutton::before {
	display: block
}
#c_new_list_258-1721873340071 .e_loop-2 .p_active .p_mbutton::after {
	display: block
}
#c_new_list_258-1721873340071 .e_loop-2 .p_input_match {
	width: 100px;
	height: 40px;
	padding: 10px;
	border: 1px solid #ced4da;
	border-radius: 3px
}
#c_new_list_258-1721873340071 .e_loop-2 .p_filter_result {
	display: inline-block
}
#c_new_list_258-1721873340071 .e_loop-2 .p_contclear {
	cursor: pointer
}
#c_new_list_258-1721873340071 .e_loop-2 .swiper-container {
	padding-bottom: 30px
}
#c_new_list_258-1721873340071 .e_loop-2 .p_imgwrapper {
	width: 80px;
	height: 100px;
	overflow: hidden
}
#c_new_list_258-1721873340071 .e_loop-2 .p_imgtitle {
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	margin: 0 auto;
	line-height: 20px
}
#c_new_list_258-1721873340071 .e_loop-2 .p_imgwrapper img {
	width: 100%;
	object-fit: cover
}
#c_new_list_258-1721873340071 .e_loop-2 .p_active .p_imgwrapper {
	border: 1px solid #409eff
}
#c_new_list_258-1721873340071 .e_loop-2 .p_filter_result {
	display: none
}
#c_new_list_258-1721873340071 .e_loop-2 .p_contclear {
	display: none
}
#c_new_list_258-1721873340071 .e_loop-2 .p_inputRangeSearch {
	padding: 7px 12px;
	background: #007bff;
	color: white;
	font-size: 14px;
	font-style: normal
}
#c_new_list_258-1721873340071 .e_loop-2 .p_inputSearch {
	padding: 0px 17px;
	background: #007bff;
	color: white;
	font-size: 14px;
	font-style: normal;
	height: 40px;
	display: inline-block;
	vertical-align: middle;
	border-radius: 5px;
	margin-left: 10px
}
#c_new_list_258-1721873340071 .e_loop-2 .p_categoryActive {
	color: #409EFF
}
#c_new_list_258-1721873340071 .e_loop-2 {
	height: 100%
}
#c_new_list_258-1721873340071 .e_loop-2 > div {
	height: 100%
}
#c_new_list_258-1721873340071 .e_image-3 {
	overflow: hidden;
	display-radio: 1;
	height: 100%;
	background: #000
}
#c_new_list_258-1721873340071 .e_image-3 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .4
}
#c_new_list_258-1721873340071 .e_loop-4 .p_list {
	display: flex;
	flex-direction: column;
	gap: 20px
}
#c_new_list_258-1721873340071 .e_loop-4 .p_loopitem {
	flex: 0 0 33.3%;
	position: relative;
	border-radius: 25px;
	overflow: hidden
}
#c_new_list_258-1721873340071 .e_loop-4 .p_page {
	text-align: center
}
#c_new_list_258-1721873340071 .e_loop-4 .p_filter_wrapper {
	width: 100%;
	font-size: 13px
}
#c_new_list_258-1721873340071 .e_loop-4 .p_kv_wrapper {
	display: flex;
	flex-wrap: nowrap;
	line-height: 40px;
	margin: 15px 0
}
#c_new_list_258-1721873340071 .e_loop-4 .p_filter_key {
	width: 70px;
	overflow: hidden;
	margin-right: 10px;
	font-weight: bold;
	color: #333333;
	font-size: 12px
}
#c_new_list_258-1721873340071 .e_loop-4 .p_v_item {
	display: inline-block;
	padding: 0 3px;
	cursor: pointer;
	font-size: 13px;
	color: #555555;
	margin-right: 30px
}
#c_new_list_258-1721873340071 .e_loop-4 .p_active .p_fbutton {
	color: #fff;
	background-color: cornflowerblue
}
#c_new_list_258-1721873340071 .e_loop-4 .p_result_item {
	position: relative;
	padding: 3px 20px 3px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	margin-right: 10px
}
#c_new_list_258-1721873340071 .e_loop-4 .p_filter_close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 3px;
	font-style: normal;
	font-size: 16px;
	margin-top: -5px;
	cursor: pointer
}
#c_new_list_258-1721873340071 .e_loop-4 .multSelect {
	font-size: 13px;
	position: relative
}
#c_new_list_258-1721873340071 .e_loop-4 .multSelect .inputWrap {
	width: 100%;
	min-width: 100px;
	min-height: 24px;
	border: 1px solid #DCDFE6;
	border-radius: 3px;
	position: relative;
	cursor: pointer;
	background: white
}
#c_new_list_258-1721873340071 .e_loop-4 .multSelect.is-invalid .inputWrap {
	border-color: #dc3545
}
#c_new_list_258-1721873340071 .e_loop-4 .multSelect ul {
	padding: 0 5px;
	margin: 0;
	padding-right: 35px
}
#c_new_list_258-1721873340071 .e_loop-4 .multSelect ul, li {
	list-style: none
}
#c_new_list_258-1721873340071 .e_loop-4 .multSelect li {
	display: inline-block;
	background: #edf0f3;
	color: #92969c;
	padding: 0px 5px;
	margin: 1px 5px 1px 0;
	border-radius: 5px;
	line-height: 16px
}
#c_new_list_258-1721873340071 .e_loop-4 .multSelect .multSelect-option {
	width: 100%;
	border: 1px solid #DCDFE6;
	border-radius: 2px;
	border-top: 0;
	max-height: 200px;
	overflow-y: scroll;
	position: absolute;
	height: 0;
	opacity: 0;
	z-index: 9;
	background: #fff
}
#c_new_list_258-1721873340071 .e_loop-4 .multSelect .multSelect-option>div {
	line-height: 24px;
	cursor: pointer;
	padding: 0 10px
}
#c_new_list_258-1721873340071 .e_loop-4 .multSelect .multSelect-option>div.selected {
	color: #409eff
}
#c_new_list_258-1721873340071 .e_loop-4 .multSelect .multSelect-option>div:hover {
	color: #409eff;
	background: #f3f6f9
}
#c_new_list_258-1721873340071 .e_loop-4 .multSelect .fa-close {
	font-style: normal;
	font-size: 12px;
	padding: 0 5px 0 7px
}
#c_new_list_258-1721873340071 .e_loop-4 .multSelect .inputWrap>.fa svg {
	fill: #666;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 0;
	top: calc(50% - 3px)
}
#c_new_list_258-1721873340071 .e_loop-4 .multSelect .inputWrap>.fa-down svg {
	transform: rotate(-90deg)
}
#c_new_list_258-1721873340071 .e_loop-4 .multSelect .inputWrap>.fa-up svg {
	transform: rotate(90deg)
}
#c_new_list_258-1721873340071 .e_loop-4 .multSelect .placeholder {
	line-height: 40px;
	padding-left: 10px;
	color: #aaa;
	position: absolute;
	left: 0;
	top: 0
}
#c_new_list_258-1721873340071 .e_loop-4 .p_normal_start {
	display: inline;
	width: 100px;
	height: 40px
}
#c_new_list_258-1721873340071 .e_loop-4 .p_date_start {
	display: inline;
	width: 105px;
	height: 40px
}
#c_new_list_258-1721873340071 .e_loop-4 .p_normal_end {
	display: inline;
	width: 100px;
	height: 40px;
	margin-right: 5px
}
#c_new_list_258-1721873340071 .e_loop-4 .p_date_end {
	display: inline;
	width: 105px;
	height: 40px;
	margin-right: 5px
}
#c_new_list_258-1721873340071 .e_loop-4 .p_split {
	margin: 0 5px
}
#c_new_list_258-1721873340071 .e_loop-4 .p_normal {
	margin-right: 16px
}
#c_new_list_258-1721873340071 .e_loop-4 .p_fbutton {
	background-color: #007bff;
	border: 1px solid #409EFF;
	text-decoration: none;
	color: white;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}
#c_new_list_258-1721873340071 .e_loop-4 .input-check, .e_loop-4 .input-radio {
	margin: 0 5px;
	vertical-align: text-top
}
#c_new_list_258-1721873340071 .e_loop-4 .position-left {
	display: flex
}
#c_new_list_258-1721873340071 .e_loop-4 .position-right {
	display: flex;
	flex-direction: row-reverse
}
#c_new_list_258-1721873340071 .e_loop-4 .position-bottom {
	display: flex;
	flex-direction: column-reverse
}
#c_new_list_258-1721873340071 .e_loop-4 .p_mbutton {
	border: 1px solid #409EFF;
	text-decoration: none;
	color: #409EFF;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}
#c_new_list_258-1721873340071 .e_loop-4 .p_mbutton:after {
	content: "";
	display: none;
	width: 16px;
	height: 16px;
	background-color: #409eff;
	-webkit-transform: skewY( -45deg);
	transform: skewY( 360deg);
	position: absolute;
	bottom: 0px;
	right: 0;
	z-index: 1
}
#c_new_list_258-1721873340071 .e_loop-4 .p_mbutton::before {
	content: "";
	display: none;
	width: 6px;
	height: 9px;
	border-right: #ffffff solid 2px;
	border-bottom: #ffffff solid 2px;
	-webkit-transform: rotate( 35deg);
	transform: rotate( 35deg);
	position: absolute;
	bottom: 5px;
	right: 4px;
	z-index: 2
}
#c_new_list_258-1721873340071 .e_loop-4 .p_active .p_mbutton::before {
	display: block
}
#c_new_list_258-1721873340071 .e_loop-4 .p_active .p_mbutton::after {
	display: block
}
#c_new_list_258-1721873340071 .e_loop-4 .p_input_match {
	width: 100px;
	height: 40px;
	padding: 10px;
	border: 1px solid #ced4da;
	border-radius: 3px
}
#c_new_list_258-1721873340071 .e_loop-4 .p_filter_result {
	display: none
}
#c_new_list_258-1721873340071 .e_loop-4 .p_contclear {
	cursor: pointer;
	display: none
}
#c_new_list_258-1721873340071 .e_loop-4 .swiper-container {
	padding-bottom: 30px
}
#c_new_list_258-1721873340071 .e_loop-4 .p_imgwrapper {
	width: 80px;
	height: 100px;
	overflow: hidden
}
#c_new_list_258-1721873340071 .e_loop-4 .p_imgtitle {
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	margin: 0 auto;
	line-height: 20px
}
#c_new_list_258-1721873340071 .e_loop-4 .p_imgwrapper img {
	width: 100%;
	object-fit: cover
}
#c_new_list_258-1721873340071 .e_loop-4 .p_active .p_imgwrapper {
	border: 1px solid #409eff
}
#c_new_list_258-1721873340071 .e_loop-4 .p_inputRangeSearch {
	padding: 7px 12px;
	background: #007bff;
	color: white;
	font-size: 14px;
	font-style: normal
}
#c_new_list_258-1721873340071 .e_loop-4 .p_inputSearch {
	padding: 0px 17px;
	background: #007bff;
	color: white;
	font-size: 14px;
	font-style: normal;
	height: 40px;
	display: inline-block;
	vertical-align: middle;
	border-radius: 5px;
	margin-left: 10px
}
#c_new_list_258-1721873340071 .e_loop-4 .p_categoryActive {
	color: #409EFF
}
#c_new_list_258-1721873340071 .e_loop-4 {
	display-radio: 1
}
#c_new_list_258-1721873340071 .e_container-6 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	height: 100%
}
#c_new_list_258-1721873340071 .e_container-6 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_new_list_258-1721873340071 .e_container-7 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	height: 220px;
	background: rgb(239 239 239);
	transition: all ease .3s
}
#c_new_list_258-1721873340071 .e_container-7 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 30px
}
#c_new_list_258-1721873340071 .e_container-1 > .cbox-1-0 {
	width: 70%;
	flex: none
}
#c_new_list_258-1721873340071 .e_loop-2 .p_list {
	justify-content: space-between;
	gap: 20px;
	flex-wrap: nowrap;
	height: 100%
}
#c_new_list_258-1721873340071 .e_container-1 > .cbox-1-1 {
	width: calc(30% - 20px);
	flex: none
}
#c_new_list_258-1721873340071 .e_timeFormat-8 {
	font-family: arial;
	font-size: 14px;
	color: #000;
	font_radio: 2;
	display-radio: 1;
	line-height: 1
}
#c_new_list_258-1721873340071 .e_text-9 {
	line-height: normal;
	font_radio: 2;
	display-radio: 1;
	font-size: 20px;
	font-weight: bold;
	font-family: Microsoft YaHei;
	margin-top: 10px;
	width: 74%;
	color: rgba(0,0,0,1)
}
#c_new_list_258-1721873340071 .e_text-10 {
	line-height: normal
}
#c_new_list_258-1721873340071 .e_text-10 a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10
}
#c_new_list_258-1721873340071 .e_container-7:hover {
	background: #00309a
}
#c_new_list_258-1721873340071 .e_container-7:hover .s_title {
	color: #fff
}
#c_new_list_258-1721873340071 .e_container-11 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	height: 100%
}
#c_new_list_258-1721873340071 .e_container-11 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center
}
#c_new_list_258-1721873340071 .e_timeFormat-15 {
	font-family: arial;
	font-size: 14px;
	color: rgba(255,255,255,1);
	font_radio: 2;
	display-radio: 1;
	line-height: 1
}
#c_new_list_258-1721873340071 .e_text-16 {
	line-height: normal;
	font_radio: 2;
	display-radio: 1;
	font-size: 20px;
	font-weight: bold;
	font-family: Microsoft YaHei;
	margin-top: 10px;
	width: auto;
	color: rgba(255,255,255,1)
}
#c_new_list_258-1721873340071 .e_container-17 {
	display: flex;
	width: 100%;
	flex-direction: column;
	height: 80%;
	justify-content: space-between;
	padding: 0 30px;
	background_radio: 1;
	display-radio: flex
}
#c_new_list_258-1721873340071 .e_container-17 > .p_item {
	max-width: 100%;
	max-height: 100%
}
#c_new_list_258-1721873340071 .e_text-18 {
	line-height: normal;
	font_radio: 2;
	display-radio: 1;
	color: rgba(255,255,255,1)
}
#c_new_list_258-1721873340071 .e_richText-19 blockquote {
	font-style: italic;
	font-family: Georgia, Times, "Times New Roman", serif;
	padding: 2px 0;
	border-style: solid;
	border-color: #ccc;
	border-width: 0;
	padding-left: 20px;
	padding-right: 8px;
	border-left-width: 5px
}
#c_new_list_258-1721873340071 .e_richText-19 ol {
	display: block;
	list-style-type: decimal;
	margin-block-start: 1em;
	margin-block-end: 1em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	padding-inline-start: 40px
}
#c_new_list_258-1721873340071 .e_richText-19 li {
	display: list-item;
	text-align: -webkit-match-parent;
	list-style: inherit
}
#c_new_list_258-1721873340071 .e_richText-19 ul {
	display: block;
	list-style-type: disc;
	margin-block-start: 1em;
	margin-block-end: 1em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	padding-inline-start: 40px
}
#c_new_list_258-1721873340071 .e_richText-19 {
	font_radio: 2;
	display-radio: 1;
	font-size: 13px;
	color: rgba(255,255,255,0.8);
	font-family: Microsoft YaHei;
	line-height: 1.5;
	margin-top: 15px
}
#c_new_list_258-1721873340071 .e_text-18 a {
	display: inline-block;
	border: 1px solid #fff;
	padding: 7px 15px
}
#c_new_list_258-1721873340071 .e_text-18 a svg {
	margin: 0 0 0 10px;
	height: 20px;
	width: auto
}
#c_new_list_258-1721873340071 .e_container-20 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex
}
#c_new_list_258-1721873340071 .e_container-20 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_new_list_258-1721873340071 .e_container-25 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 94%;
	padding-left: 0px;
	margin-right: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	display-radio: flex;
	margin-left: auto;
	background_radio: 1;
	max-width: 1600px;
	padding-bottom: 40px
}
#c_new_list_258-1721873340071 .e_container-25 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_new_list_258-1721873340071 .e_container-25 .p_item {
	display-radio: 1
}
#c_new_list_258-1721873340071 .e_text-26 {
	font_radio: 2;
	margin-right: auto;
	margin-top: 5px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	color: rgba(191,191,191,1);
	text-align: center;
	line-height: 1;
	display-radio: 1;
	margin-left: auto;
	font-weight: bold
}
#c_new_list_258-1721873340071 .e_line-27 {
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: rgba(139,139,139,1);
	max-width: 22px;
	width: 20%;
	display-radio: 1;
	margin-left: auto;
	margin-right: auto;
	margin-top: 25px;
	margin-bottom: 0px;
	line_radio: 1
}
#c_new_list_258-1721873340071 .e_h3-28 {
	font_radio: 2;
	display-radio: 1;
	font-size: 40px;
	margin-top: 0px;
	font-family: "0aec771c-7972-4d72-9115-5e2b37598e45";
	font-weight: bold;
	margin-bottom: 20px;
	color: rgba(0,0,0,1);
	text-align: center
}
#c_new_list_258-1721873340071 .e_text-29 {
	display-radio: 1;
	font_radio: 2;
	max-width: none;
	margin-left: auto;
	margin-right: auto;
	font-size: 16px;
	text-align: center;
	line-height: 1.5;
	margin-top: 0px;
	margin-bottom: 35px;
	color: rgba(183,183,183,1)
}
@media screen and (max-width:768px) {
#c_new_list_258-1721873340071 .e_loop-2 .p_loopitem {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: calc(100% / 1)
}
#c_new_list_258-1721873340071 .e_loop-4 .p_loopitem {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: calc(100% / 1)
}
#c_new_list_258-1721873340071 .e_container-1 > .cbox-1-0 {
	width: 100%
}
#c_new_list_258-1721873340071 .e_loop-2 .p_loopitem {
	width: 100%
}
#c_new_list_258-1721873340071 .e_image-3 {
	height: 370px
}
#c_new_list_258-1721873340071 .e_loop-2 .p_list {
	flex-direction: column
}
#c_new_list_258-1721873340071 .e_container-1 > .cbox-1-1 {
	width: 100%;
	margin-top: 20px
}
#c_new_list_258-1721873340071 .e_container-7 {
	height: 170px
}
#c_new_list_258-1721873340071 .e_container-25 {
	margin-left: auto;
	margin-right: auto;
	background_radio: 1;
	display-radio: 1
}
#c_new_list_258-1721873340071 .e_h3-28 {
	font_radio: 2;
	display-radio: 1;
	font-size: 30px
}
#c_new_list_258-1721873340071 .e_text-29 {
	display-radio: 1;
	font_radio: 2;
	font-size: 12px;
	color: rgba(137,137,137,1);
	line-height: 1.5;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 5px
}
#c_new_list_258-1721873340071 {
	background_radio: 2;
	display-radio: 1
}
#c_new_list_258-1721873340071 .e_text-26 {
	font_radio: 1;
	display-radio: 1
}
}
@media screen and (min-width: 769px) {
#c_new_list_258-1721873340071 .e_loop-2 .p_loopitem {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: calc(100% / 2)
}
#c_new_list_258-1721873340071 .e_loop-4 .p_loopitem {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: calc(100% / 4)
}
#c_new_list_258-1721873340071 .e_loop-2 .p_loopitem.on {
	width: calc(70% - 10px)
}
#c_new_list_258-1721873340071 .e_loop-2 .p_loopitem.other {
	width: calc(30% - 10px)
}
}
#c_popbox-1729761132152 {
	width: 80%;
	position: relative;
	margin: 100px auto 200px auto;
	display: none;
	background_radio: 2;
	display-radio: none;
	height: auto;
	max-width: 1028px;
	max-height: none;
	min-height: 580px
}
#c_popbox-1729761132152 .pop_wrapper {
	height: inherit;
	position: relative;
	min-height: inherit;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center
}
#c_popbox-1729761132152 .p_container {
	background-color: #fff;
	position: relative;
	z-index: 2;
	min-height: inherit;
	width: inherit;
	height: inherit;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	display-radio: flex
}
#c_popbox-1729761132152 .p_background {
	width: 100vw;
	background-color: rgba(0, 0, 0, 0.7);
	position: absolute;
	top: -100px;
	left: calc(-50vw + 50%);
	min-height: calc(100% + 200px)
}
#c_popbox-1729761132152 .p_background-preview {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgb(0, 0, 0);
	opacity: 0.7
}
#c_popbox-1729761132152 .p_content {
	min-height: 0px;
	width: inherit;
	overflow: auto;
	display-radio: 1
}
#c_popbox-1729761132152 .p_title {
	padding: 10px;
	overflow: hidden
}
#c_popbox-1729761132152 .p_close {
	width: auto;
	height: auto;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	z-index: 10000;
	text-align: right
}
.fixed {
	position: fixed !important;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	top: 50%;
	z-index: 9999;
	margin: -150px auto 0 auto
}
.fixed .p_background {
	position: fixed !important;
	top: 0 !important;
	right: 0;
	bottom: 0;
	left: 0 !important
}
#c_static_001-1729761154483 {
	background_radio: 2;
	display-radio: 1;
	min-height: 0px
}
#c_static_001-1729761154483 .e_container-1 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%
}
#c_static_001-1729761154483 .e_container-1 > .p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}
#c_static_001-1729761154483 .e_video-2 {
	width: 100%;
	position: relative;
	display-radio: 1;
	max-width: none
}
#c_static_001-1729761154483 .e_video-2 video {
	width: 100%;
	display: block
}
#c_static_001-1729761154483 .e_video-2 .p_video {
	position: relative
}
#c_static_001-1729761154483 .e_video-2 .cover {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0
}
#c_static_001-1729761154483 .e_video-2 .cover .coverImage {
	width: 100%;
	height: 100%
}
#c_static_001-1729761154483 .e_video-2 .cover .coverImage img {
	width: 100%;
	height: 100%;
	object-fit: contain
}
#c_static_001-1729761154483 .e_video-2 .cover .playBtn {
	position: absolute;
	width: 80px;
	height: 80px;
	z-index: 2;
	left: 50%;
	top: 50%;
	margin: -40px auto auto -40px;
	cursor: pointer
}
@media screen and (max-width:768px) {
}
@media screen and (min-width: 769px) {
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
}






/* 关于我们-新增标题与配图样式 */
.about-title-block {
    margin-bottom: 24px;
    text-align: center; /* 核心：容器内文字/行内元素整体居中 */
    width: 100%;
}
.about-title {
    font-size:35px;
    font-weight: 700;
    color: #0a4b9e;
    margin: 0 0 18px 0;
    letter-spacing: 2px;
    line-height: 1.3;
}
.about-title-pic {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto; /* 核心：块级图片水平居中 */
}

/* 移动端适配 */
@media (max-width: 768px) {
    .about-title {
        font-size: 24px;
    }
    .about-title-pic {
        max-width: 100%;
    }
}

