* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/* font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'HarmonyOS Sans SC', 'SimSun', 'SimHei', 'Arial', 'sans-serif'; */
}

@font-face {
	font-family: "HarmonyOS_Sans_SC_Medium";
	/* Project id 2871779 */
	src: url('../fonts/HarmonyOS_Sans_SC_Medium.woff2');
}

@font-face {
	font-family: "HarmonyOS_Sans_SC";
	/* Project id 2871779 */
	src: url('../fonts/HarmonyOS_Sans_SC_Regular.ttf');
}

@font-face {
	font-family: "HarmonyOS_Sans_SC_Light";
	/* Project id 2871779 */
	src: url('../fonts/HarmonyOS_Sans_SC_Light.ttf') format('truetype');
}

@font-face {
	font-family: "HarmonyOS_Sans_SC_Bold";
	/* Project id 2871779 */
	src: url('../fonts/HarmonyOS_Sans_SC_Bold.woff');
}

@font-face {
	font-family: "AlimamaShuHeiTi-Bold";
	/* Project id 2871779 */
	src: url('../fonts/AlimamaShuHeiTi-Bold.woff');
}

@font-face {
	font-family: "Rany-Bold";
	/* Project id 2871779 */
	src: url('../fonts/Rany-Bold.otf');
}

@font-face {
	font-family: "Rany";
	/* Project id 2871779 */
	src: url('../fonts/Rany.ttf');
}

a:link,
a:active,
a:visited,
a:hover {
	background: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
}

body {
	overflow-x: hidden;
	-webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
	/*高宽分别对应横竖滚动条的尺寸*/
	width: 5px;
	height: 1px;
}

/*滚动条里面小方块*/
::-webkit-scrollbar-thumb {
	border-radius: 2px;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: rgba(48, 136, 100, 1);
}

/*滚动条里面轨道*/
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 2px;
	background: #EDEDED;
}

.content1300 {
	margin: 0 auto;
	width: 1300px;
	max-width: 94%;
}

.content1440 {
	margin: 0 auto;
	width: 1440px;
	max-width: 94%;
}

.content1400 {
	margin: 0 auto;
	width: 1400px;
	max-width: 94%;
}

.content1240 {
	margin: 0 auto;
	width: 1240px;
	max-width: 94%;
}

.content1200 {
	margin: 0 auto;
	width: 1200px;
	max-width: 94%;
}

.content1500 {
	margin: 0 auto;
	width: 1500px;
	max-width: 94%;
}

.content1600 {
	margin: 0 auto;
	width: 1600px;
	max-width: 94%;
}

.picCover {
	position: relative;
}

.picCover .pic {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.picCover .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hoverLi .pic {
	overflow: hidden;
}

.hoverLi:hover .imgScale {
	transform: scale(1.05);
}

.imgScale {
	transition: all 1s;
	display: block;
	width: 100%;
}

.font30 {
	font-size: 30px;
}

.font48 {
	font-size: 48px;
}

.font46 {
	font-size: 46px;
}

.font36 {
	font-size: 36px;
}

.font40 {
	font-size: 40px;
}

.font60 {
	font-size: 60px;
}

.font80 {
	font-size: 80px;
}

.font90 {
	font-size: 90px;
}

.font200 {
	font-size: 200px;
}

/* 头部样式 */
.header {
	position: sticky;
	top: 0;
	background-color: rgba(21, 31, 33, 1);
	color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	z-index: 999;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header .logo img {
	display: block;
	width: 195px;
}

.header .nav-menu {
	display: flex;
	list-style: none;
	gap: 0 56px;
}


.header .nav-menu a {
	position: relative;
	display: block;
	font-weight: bold;
	font-size: 18px;
	color: #FFFFFF;
	line-height: 88px;
	transition: color 0.3s;
	position: relative;
	z-index: 1001;
}

.header .nav-menu li>a::before {
	position: absolute;
	content: "";
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	height: 4px;
	background: #28986A;
	border-radius: 2px;
	transition: width 0.3s;
}

.header .nav-menu li:hover>a::before,
.header .nav-menu li.active>a::before {
	width: 100%;
}

.header .nav-menu a:hover {
	color: rgba(48, 136, 100, 1);
}

/* 下拉菜单样式 */
.header .nav-menu .dropdown {
	/* position: relative; */
}

.header .nav-menu .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	display: none;
	min-width: 200px;
	border-radius: 0 0 8px 8px;
	margin-top: -1px;
}

.header .nav-menu .dropdown:hover .dropdown-menu {
	display: block;
}

.header .nav-menu .dropdown-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 39px 0;
	min-height: 559px;
	gap: 30px;
}

.header .nav-menu .dropdown-menu1 .dropdown-content {
	grid-template-columns: .6fr .6fr .7fr 1fr 1fr;
	gap: 30px;
}

.header .nav-menu .dropdown-column {
	/* flex: 1;
	min-width: 150px; */
}

.header .nav-menu .dropdown-column h4 {
	font-size: 16px;
	font-weight: bold;
	color: rgba(51, 51, 51, 1);
	line-height: 1;
	margin-bottom: 13px;
	/* margin-bottom: 15px;
	padding-bottom: 8px;
	border-bottom: 1px solid #e0e0e0; */
}

.header .nav-menu .dropdown-column a {
	display: block;
	font-size: 14px;
	color: rgba(51, 51, 51, 1);
	line-height: 26px;
	transition: all 0.3s;
	font-weight: 400;
}
.header .nav-menu .dropdown-column a.others-links{
	color: blue !important;
	margin-bottom: 35px;
}
.header .nav-menu .dropdown-column a:hover {
	color: rgba(48, 136, 100, 1);
	/* padding-left: 5px; */
}

.header .nav-menu .dropdown-button {
	margin-top: 29px;
	align-self: flex-start;
}

.header .nav-menu .dropdown-button .learn-more-btn {
	display: inline-block;
	padding: 0 29px;
	line-height: 30px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	transition: all 0.3s;
	background: #308864;
	border-radius: 15px;
}

.header .nav-menu .dropdown-button .learn-more-btn:hover {
	color: #fff;
}

/* 头部操作区域 */
.header-actions {
	display: flex;
	align-items: center;
}

/* 搜索功能 */
.header-actions .search-container {
	position: relative;
}

.header-actions .search-btn {
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
	padding: 5px;
	color: #fff;
	margin-left: 50px;
	transition: all 0.3s;
}

.header-actions .search-popup {
	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	display: none;
	align-items: center;
	gap: 10px;
	min-width: 300px;
	margin-top: 10px;
}

.header-actions .search-popup input {
	flex: 1;
	padding: 8px 12px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	font-size: 14px;
}

.header-actions .search-submit {
	padding: 8px 16px;
	background-color: rgba(48, 136, 100, 1);
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s;
}

.header-actions .search-btn:hover {
	color: rgba(48, 136, 100, 1);
}

.header-actions .search-submit:hover {
	background-color: rgba(48, 136, 100, 1);
}

/* 语言切换功能 */
.header-actions .language-container {
	position: relative;
	margin-left: 25px;
}

.header-actions .language-btn {
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
	color: #fff;
	transition: all 0.3s;
}

.header-actions .language-btn:hover {
	color: rgba(48, 136, 100, 1);
}

.header-actions .language-btn .iconfont {
	font-size: 18px;
}

.header-actions .language-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	display: none;
	margin-top: 10px;
	min-width: 120px;
	overflow: hidden;
}

.header-actions .language-dropdown a {
	display: block;
	padding: 10px 15px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	transition: all 0.3s;
}

.header-actions .language-dropdown a:hover {
	background-color: #f5f5f5;
}

.header .r .aslideBtn .iconfont {
	color: rgba(153, 153, 153, 1);
	font-size: 22px;
	transition: all .6s;
}

.header .r .header-search-box {
	position: relative;
	margin-left: 40px;
}

.header .r .header-search-box .header-searchBtn {
	cursor: pointer;
	font-size: 22px;
	color: rgba(153, 153, 153, 1);
	transition: all .6s;
}

.header .r .header-search-box .header-searchBtn:hover {
	color: rgba(48, 136, 100, 1);
}

.header .r .header-search-box .header-search-container {
	position: absolute;
	right: -15px;
	top: 70px;
	display: none;
	/* border: 1px solid #999; */
}

.header .r .header-search-box .header-search {
	width: 230px;
	height: 38px;
	background: rgba(255, 255, 255, 1);
	/* background: #F0F0F0; */
	border-radius: 19px;
	display: flex;
	align-items: center;
	/* box-shadow: 0 10px 40px rgba(0, 0, 0, .08); */
	border: 1px solid #999;
}

.header .r .header-search-box .header-search input {
	flex: 1;
	padding-left: 17px;
	font-size: 12px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333;
	height: 100%;
	width: 100%;
	border-radius: 19px;
	border: none;
	outline: none;
	background-color: transparent;
}

.header .r .header-search-box .header-search input::placeholder {
	color: #999;
}

.header .r .header-search-box .header-search .iconfont {
	cursor: pointer;
	color: rgba(153, 153, 153, 1);
	padding: 0 15px 0 10px;
	transition: all 1s;
}

.header .r .header-search-box .header-search .iconfont:hover {
	color: rgba(48, 136, 100, 1);
}

.innerBanner {
	position: relative;
}

.innerBanner .pic img {
	display: block;
	width: 100%;
	min-height: 430px;
	object-fit: cover;
}

.innerBanner .innerBanner-content {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.innerBanner .innerBanner-content .title {
	font-weight: bold;
	color: #FFFFFF;
	line-height: 1.25;
}

.innerBanner .innerBanner-content .des {
	color: #FFFFFF;
	line-height: 1.66;
	margin: .4em 0 .8em;
}

.innerBanner .learn-more-btn {
	line-height: 52px;
	background: #308864;
	border-radius: 10px;
	display: inline-block;
	padding: 0 68px;
	font-weight: 400;
	font-size: 24px;
	color: #FFFFFF;
	opacity: 1;
	transition: all .6s;
}

.innerBanner .learn-more-btn:hover {
	opacity: .8;
}

.blog-news-tabs {
	position: relative;
	padding: 0 40px;
}

.blog-news-tabs .swiper-slide {
	width: auto;
	padding: 0 28px;
	line-height: 38px;
	background: #FFFFFF;
	border-radius: 20px;
	border: 1px solid #999999;
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	cursor: pointer;
	transition: all .3s ease-in-out;
}

.blog-news-tabs .swiper-slide:not(:last-child) {
	margin-right: 27px;
}

.blog-news-tabs .swiper-slide.active,
.blog-news-tabs .swiper-slide:hover {
	background-color: rgba(48, 136, 100, 1);
	border-color: rgba(48, 136, 100, 1);
	color: #fff;
}

.blog-news-tabs .btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(136, 136, 136, 1);
	cursor: pointer;
}

.blog-news-tabs .btn.swiper-button-disabled {
	opacity: 0.2;
	cursor: not-allowed;
}

.blog-news-tabs .btn:not(.swiper-button-disabled):hover {
	color: #1B8459;
}

.blog-news-tabs .btn.btn-prev {
	left: 0;
}

.blog-news-tabs .btn.btn-next {
	right: 0;
}

.blog-news-tabs .btn .iconfont {
	font-size: 20px;
}

.pc-aslide {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: ease-in-out .6s;
}

.pc-aslide.active {
	opacity: 1;
	pointer-events: inherit;
	visibility: visible;
}

.pc-aslide-content {
	position: absolute;
	right: 0;
	top: 0;
	background-color: rgba(255, 255, 255, 1);
	height: 100%;
	width: 829px;
	max-width: 100%;
	padding: 48px 50px 50px 77px;
	display: flex;
	flex-direction: column;
	transition: ease-in-out .6s;
	transform: translateX(120%);
	opacity: 0;
}

.pc-aslide.active .pc-aslide-content {
	transform: translateX(0);
	transition: ease-in-out .6s .3s;
	opacity: 1;
}

.pc-aslide-content-t {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pc-aslide-content-t .close {
	color: rgba(153, 153, 153, 1);
	transition: all .6s;
	cursor: pointer;
}

.pc-aslide-content-c .list .li-des a:hover,
.pc-aslide-content-c .list .li-title:hover,
.pc-aslide-content-t .close:hover {
	color: rgba(48, 136, 100, 1);
}

.pc-aslide-content-t .close .iconfont {
	font-size: 30px;
}

.pc-aslide-content-c {
	text-align: center;
	margin-top: 100px;
	flex: 1;
	overflow: auto;
}

.pc-aslide-content-c .list {
	display: inline-block;
	min-width: 300px;
}

.pc-aslide-content-c .list li {
	opacity: 0;
	transition: all 1s ease;
	transform: translateY(40px);
}

.pc-aslide.active .pc-aslide-content-c .list li {
	opacity: 1;
	transform: translateY(0);
}

.pc-aslide-content-c .list li:not(:last-child) {
	margin-bottom: 50px;
}

.pc-aslide-content-c .list .li-title {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #333333;
	line-height: 1;
	transition: all .6s;
}

.pc-aslide-content-c .list .li-des {
	border-top: 1px solid rgba(230, 230, 230, 1);
	margin-top: 20px;
	padding-top: 20px;
	display: none;
}

.pc-aslide-content-c .list .li-des a {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #333333;
	display: block;
	line-height: 2.2;
	transition: all .3s;
	margin-bottom: 5px;
}

.pc-aslide-content-c .list .li-des a.sub-title {
	color: #308864;
	font-weight: 500;
	font-size: 16px;
	margin-top: 15px;
	margin-bottom: 10px;
}

.pc-aslide-content-c .list .li-des a.sub-title:first-child {
	margin-top: 0;
}

.pc-aslide-content-c .list .li-des a:hover {
	color: #308864;
}

.modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.55);
	display: none;
	z-index: 999;
}

.modal .shadow {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.video-content {

	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);

}

.modal .close {
	position: absolute;
	right: -26px;
	top: -26px;
	cursor: pointer;
	color: #fff;
	font-size: 24px;
}

.video-content video {
	display: block;
	margin: 0 auto;
	max-width: 90vw;
	max-height: 80vh;
}

.pagination ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.pagination ul li {
	width: 36px;
	height: 36px;
	line-height: 36px;
	background: #FFFFFF;
	border: 1px solid #E1E1E1;
	text-align: center;
	font-size: 14px;
	color: rgba(51, 51, 51, 1);
	margin: 5px;
	cursor: pointer;
	transition: all .6s;
}


.pagination ul li .iconfont {
	font-size: 18px;
}

.pagination ul li:hover,
.pagination ul li.active {
	background-color: rgba(48, 136, 100, 1);
	border-color: rgba(48, 136, 100, 1);
}

.pagination ul li a {
	color: rgba(153, 153, 153, 1);
	display: block;
	transition: all .6s;
}

.pagination ul li.active a,
.pagination ul li:hover a {
	color: #fff;
}

/* 面包屑导航 */
.breadcrumb {
	font-size: 14px;
	color: #666;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	line-height: 30px;
	gap: 0 5px;
	padding: 39px 0 25px;
}

.breadcrumb a {
	color: rgba(153, 153, 153, 1);
	text-decoration: none;
	transition: all .6s;
}

.breadcrumb a.active,
.breadcrumb a:hover {
	color: rgba(48, 136, 100, 1);
}

.breadcrumb span {
	color: rgba(153, 153, 153, 1);
	font-size: 12px;
}

@keyframes fadeInUpSmall {
	from {
		opacity: 0;
		transform: translate3d(0%, 30px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0%, 0px, 0);
	}
}

.fadeInUpSmall {
	animation-name: fadeInUpSmall;
}

.recommendation-slider {
	position: relative;
}

.recommendation-slider .swiper-slide {
	width: 32%;
	background: #FFFFFF;
	/* box-shadow: 0px 9px 40px 0px rgba(0, 0, 0, 0.1); */
	/* border: 1px solid rgba(0, 0, 0, 0); */
	border-radius: 10px;
}

.recommendation-slider .swiper-slide:not(:last-child) {
	margin-right: 2%;
}

.recommendation-slider .swiper-slide .insurance-card-header {
	height: 170px;
	background: #E6F8F0;
	box-shadow: 0px 9px 40px 0px rgba(0, 0, 0, 0.01);
	border-radius: 10px 10px 0px 0px;
	border: 1px solid #fff;
	padding: 24px 35px 20px;
	text-align: right;
}

.recommendation-slider .swiper-slide .insurance-tag {

	display: inline-block;
	padding: 0 11px;
	background: #FFD101;
	border-radius: 15px;
	font-weight: 400;
	font-size: 18px;
	color: #000000;
}

.recommendation-slider .swiper-slide .insurance-logo {
	height: 80px;
	margin-top: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.recommendation-slider .swiper-slide .insurance-logo img {
	max-width: 100%;
	max-height: 100%;
}

.recommendation-slider .swiper-slide .insurance-card-body {
	padding: 17px 30px 44px;
	text-align: center;
	border: 1px solid #f8f8f8;
}

.recommendation-slider .swiper-slide h3 {
	font-weight: bold;
	color: #333333;
	line-height: 1.33;
	text-align: left;
}

.recommendation-slider .swiper-slide .insurance-benefits {
	overflow: auto;
	margin-top: 17px;
	height: 139px;
	width: calc(100% + 14px);
	padding-right: 10px;
	text-align: left;
}

.recommendation-slider .swiper-slide .benefit-amount {
	font-weight: bold;
	font-size: 24px;
	color: #35906B;
	line-height: 1.25;
}

.recommendation-slider .swiper-slide .benefit-name {
	font-weight: 400;
	font-size: 18px;
	color: #666666;
	line-height: 30px;
}

.recommendation-slider .swiper-slide .benefit-item:not(:last-child) {
	margin-bottom: 19px;
}

.recommendation-slider .swiper-slide .learn-more-btn {
	display: inline-block;
	line-height: 52px;
	background: #308864;
	border-radius: 26px;
	margin-top: 29px;
	padding: 0 28px;
	font-weight: 400;
	font-size: 24px;
	color: #FFFFFF;
	transition: all 0.3s ease-in-out;
	width: 232px;
	max-width: 100%;
}

.recommendation-slider .swiper-slide .learn-more-btn:hover {
	opacity: .9;
}

.recommendation-slider .btn {
	position: absolute;
	top: 50%;
	width: 66px;
	height: 66px;
	background: #FFFFFF;
	box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.11);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
	z-index: 2;
	transition: all .6s;
}

.recommendation-slider .btn.btn:not(.swiper-button-disabled):hover {
	background: #308864;
	color: #fff;
}

.recommendation-slider .btn.btn.swiper-button-disabled {
	opacity: .5;
	cursor: not-allowed;
}

.recommendation-slider .btn .iconfont {
	font-size: 32px;
}

.recommendation-slider .btn.btn-prev {
	left: 0;
	transform: translate(calc(-100% - 20px), -50%);
}

.recommendation-slider .btn.btn-next {
	right: 0;
	transform: translate(calc(100% + 20px), -50%);
}

.faq-list .faq-item {
	border-bottom: 1px solid rgba(229, 229, 229, 1);
}

.faq-list .faq-question {
	padding: 18px 30px 18px 18px;
	display: flex;
	justify-content: space-between;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.faq-list .faq-item.active .faq-question {
	background: rgba(247, 247, 247, 1);
}

.faq-list .faq-answer .faq-icon,
.faq-list .faq-question .faq-icon {
	width: 40px;
	height: 40px;
	background: #308864;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 24px;
	color: #FFFFFF;
}

.faq-list .faq-question .faq-text {
	align-self: center;
	flex: 1;
	margin: 0 25px 0 9px;
	font-weight: 400;
	font-size: 16px;
	color: #333333;
	line-height: 30px;
}

.faq-list .faq-item.active .faq-question .faq-text {
	color: rgba(48, 136, 100, 1);
}

.faq-list .faq-question .faq-toggle {
	font-size: 30px;
	color: rgba(136, 136, 136, 1);
	transition: all 0.3s ease-in-out;
}

.faq-list .faq-item.active .faq-question .faq-toggle {
	transform: rotate(-90deg);
}

.faq-list .faq-answer {
	padding: 20px 48px;
	display: none;
}

.faq-list .faq-answer>div {
	display: flex;
	align-items: flex-start;
}

.faq-list .faq-answer .faq-text {
	flex: 1;
	margin-left: 16px;
	align-self: center;
	font-weight: 400;
	font-size: 16px;
	color: #999999;
	line-height: 30px;
}

.faq-list .faq-answer .faq-icon {
	background: rgba(255, 191, 17, 1);
}

.footer {
	background-color: rgba(4, 38, 24, 1);
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 0 18px;
	border-bottom: 1px solid rgba(255, 255, 255, .41);
}

.footer-top .footer-logo img {
	display: block;
	width: 185px;
}

.footer-top .footer-top-nav {
	display: flex;
	align-items: center;
	gap: 0 48px;
}

.footer-top .footer-top-nav a {
	font-weight: 400;
	font-size: 14px;
	color: #FFFFFF;
	line-height: 30px;
	transition: all .6s;
}

.footer-middle .footer-nav li>a:hover,
.footer-top .footer-top-nav a:hover {
	color: #28986A;
}

.footer-middle {
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-middle .footer-nav {
	width: 480px;
	display: flex;
	justify-content: space-between;
	max-width: 100%;
}

.footer-middle .footer-nav li>a {
	font-weight: 400;
	font-size: 14px;
	color: #FFFFFF;
	line-height: 30px;
	transition: all .6s;
}

.footer-middle .footer-contact {
	display: flex;
	align-items: flex-start;
}

.footer-middle .footer-qr-code {
	padding: 14px 18px 7px;
	border: 1px solid rgba(255, 255, 255, .2);
}

.footer-middle .footer-qr-code img {
	width: 104px;
}

.footer-middle .footer-qr-code p {
	font-size: 14px;
	color: #FFFFFF;
	line-height: 1;
	opacity: 0.2;
	text-align: center;
	margin-top: 7px;
}

.footer-middle .footer-contact-info {
	margin-left: 66px;
}

.footer-middle .footer-contact-info .contact-title {
	font-weight: bold;
	font-size: 20px;
	color: #FFFFFF;
	line-height: 1;
}

.footer-middle .footer-contact-info .contact-phone {
	margin-top: 20px;
}

.footer-middle .footer-contact-info .contact-phone-label {
	font-weight: 400;
	font-size: 15px;
	color: #8F8F8F;
	line-height: 1;
}

.footer-middle .footer-contact-info .contact-phone-number {
	font-size: 22px;
	font-weight: bold;
	color: #fff;
	line-height: 1;
	margin-top: 12px;
}

.footer-middle .footer-contact-info .contact-email {
	font-weight: 400;
	font-size: 18px;
	color: #FFFFFF;
	line-height: 1;
	margin-top: 15px;
}

.footer-middle .footer-contact-info .footer-social-icons {
	margin-top: 23px;
	gap: 10px;
	display: flex;
}

.footer-middle .footer-contact-info .social-icon {
	width: 35px;
	height: 35px;
	background: #118D89;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 1);
	transition: all 0.3s ease;
}

.footer-middle .footer-contact-info .social-icon:hover {
	opacity: .8;
}

.footer-social {
	margin-top: 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 0 6px;
	font-weight: 400;
	font-size: 14px;
	color: #FFFFFF;
	line-height: 30px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-social a {
	opacity: 0.67;
	color: #FFFFFF;
	transition: all .6s;
}

.footer-social a:hover {
	opacity: .9;
}

.footer-copyright {
	padding: 18px 0;
	text-align: center;
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, .36);
	line-height: 30px;
}

.footer-copyright a {
	color: rgba(255, 255, 255, .36);
	transition: all .6s;
	text-decoration: underline;
}

.footer-copyright a:hover {
	color: rgba(255, 255, 255, .9);
}

.m-right-buttom {
	display: none;
}

@media (max-width:1630px) {
	.content1600 {
		width: 94%;
	}
}

@media (max-width:1500px) {}

@media (max-width:1440px) {
	.header .logo img {
		/* width: 229px; */
	}

	.font46,
	.font48 {
		font-size: 36px;
	}
	.font40{
		font-size: 36px;
	}
	.font36 {
		font-size: 32px;
	}

	.font60 {
		font-size: 48px;
	}

	.font80 {
		font-size: 60px;
	}

	.font90 {
		font-size: 70px;
	}

	.font200 {
		font-size: 150px;
	}
	.recommendation-slider .btn{
		width: 50px;
		height: 50px;
	}
	.recommendation-slider .btn .iconfont{
		font-size: 26px;
	}
}

@media (max-width:1400px) {}

@media (max-width:1430px) {
	.content1400 {
		width: 94%;
	}
}

@media (max-width:1330px) {
	.content1300 {
		width: 94%;
	}
}

@media (max-width:1280px) {
	.header .nav-menu {
		gap: 0 40px;
	}

	.pc-aslide-content-c .list .li-title {
		font-size: 20px;
	}

	.pc-aslide-content-c .list li:not(:last-child) {
		margin-bottom: 35px;
	}

	.pc-aslide-content-c .list .li-des a {
		font-size: 16px;
		line-height: 2;
	}
	.font40,
	.font36 {
		font-size: 30px;
	}

	.font60 {
		font-size: 36px;
	}

	.font80 {
		font-size: 48px;
	}

	.font90 {
		font-size: 60px;
	}

	.font200 {
		font-size: 120px;
	}

	.font30 {
		font-size: 28px;
	}

	.font46,
	.font48 {
		font-size: 30px;
	}
}

@media (max-width:1199px) {
	.recommendation-slider .swiper-slide .learn-more-btn{
		font-size: 20px;
	}
	.innerBanner .learn-more-btn {
		line-height: 45px;
		padding: 0 49px;
		font-size: 20px;
	}

	.header .logo img {
		width: 186px;
	}

	.header {
		padding: 10px 0;
	}

	.header .nav-menu {
		display: none;
	}
.font40,
	.font36 {
		font-size: 28px;
	}

	.font60 {
		font-size: 30px;
	}

	.font80 {
		font-size: 36px;
	}

	.font90 {
		font-size: 50px;
	}

	.font200 {
		font-size: 90px;
	}

	.font30 {
		font-size: 26px;
	}

	.font46,
	.font48 {
		font-size: 28px;
	}

	.m-right-buttom {
		display: block;
		cursor: pointer;
		user-select: none;
		margin-left: 30px;
	}

	.m-right-buttom .in {
		height: 30px;
		width: 19px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.m-right-buttom span,
	.m-right-buttom span:after,
	.m-right-buttom span:before {
		display: block;
		height: 2px;
		width: 19px;
		background: #fff;
		transition: top .2s linear
	}

	.header.active .m-right-buttom span,
	.header.active .m-right-buttom span:after,
	.header.active .m-right-buttom span:before {
		background: #308864;
	}

	.m-right-buttom span {
		transition: all .2s .4s ease, background 0s;
		position: relative
	}

	.m-right-buttom span:after,
	.m-right-buttom span:before {
		position: absolute;
		left: 0;
		content: '';
		transform-origin: 50% 50%;
		transition: top .2s .4s ease, transform .4s ease;
		height: 2px
	}

	.m-right-buttom span:before {
		top: 6px
	}

	.m-right-buttom span:after {
		top: -6px
	}

	.m-right-buttom.active span,
	.header.active .m-right-buttom.active span {
		transition: all .2s 0s ease;
		background: 0 0
	}

	.m-right-buttom.active span:after,
	.m-right-buttom.active span:before {
		transition: top .2s ease, transform .2s .3s ease;
		top: 0;
		width: 19px
	}

	.m-right-buttom.active span:before {
		transform: rotate3d(0, 0, 1, 45deg)
	}

	.m-right-buttom.active span:after {
		transform: rotate3d(0, 0, 1, -45deg)
	}

	.footer-middle .footer-nav {
		width: 430px;
	}
}

@media (max-width: 1024px) {
	.breadcrumb{
		padding: 25px 0;
	}
	.footer-middle .footer-contact-info{
		margin-left: 30px;
	}
.font40,
	.font36 {
		font-size: 26px;
	}

	.font60 {
		font-size: 28px;
	}

	.font80 {
		font-size: 30px;
	}

	.font90 {
		font-size: 40px;
	}

	.font200 {
		font-size: 70px;
	}

	.font30 {
		font-size: 24px;
	}

	.font46,
	.font48 {
		font-size: 26px;
	}
	.blog-news-tabs .swiper-slide:not(:last-child){
		margin-right: 15px;
	}
	.faq-list .faq-answer .faq-icon, .faq-list .faq-question .faq-icon{
		font-size: 20px;
		width: 34px;
		height: 34px;
	}
	.faq-list .faq-question{
		padding-top: 14px;
		padding-bottom: 14px;
	}
	.faq-list .faq-answer{
		padding: 14px 20px;
	}
	.footer-middle .footer-nav{
		width: auto;
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.footer-middle .footer-nav,
	.footer-middle .footer-contact{
		width: 100%;
	}
	.footer-middle{
		flex-direction: column;
		gap: 20px;
	}
	.breadcrumb{
		padding: 20px 0;
	}
	.footer-top .footer-top-nav {
		gap: 0 20px;
	}

	.footer-middle .footer-contact-info {
		margin-left: 30px;
	}

	.innerBanner .learn-more-btn {
		font-size: 18px;
		padding: 0 31px;
		line-height: 40px;
	}

	.innerBanner .pic img {
		min-height: 340px;
	}
.font40,
	.font36 {
		font-size: 24px;
	}

	.font60 {
		font-size: 26px;
	}

	.font80 {
		font-size: 28px;
	}

	.font90 {
		font-size: 30px;
	}

	.font200 {
		font-size: 50px;
	}

	.font30 {
		font-size: 22px;
	}

	.font46,
	.font48 {
		font-size: 24px;
	}

	.pc-aslide-content {
		background-color: transparent;
	}

	.pc-aslide {
		z-index: 99;
		background-color: transparent;
	}

	.pc-aslide::before,
	.pc-aslide::after {
		position: absolute;
		content: "";
		width: 100vw;
		height: 100vw;
		right: 50vw;
		bottom: -50vw;
		background-color: rgba(0, 0, 0, 1);
		border-radius: 0 50% 0 0;
		transform-origin: center;
		transform: scale(0);
		transition: opacity .7s, transform 1.5s;
	}

	.pc-aslide::after {
		background-color: #fff;
		right: auto;
		bottom: auto;
		left: 50vw;
		top: -50vw;
		border-radius: 0 0 0 50%;
		transition: opacity .7s, transform 1s;
	}

	.pc-aslide.active::after,
	.pc-aslide.active::before {
		transform: scale(5);
		opacity: 1;
	}

	.pc-aslide-content-t {
		display: none;
	}

	.pc-aslide-content {
		padding: 60px 3%;
	}

	.pc-aslide-content {
		transform: translateX(0);
		z-index: 4;
	}

	.pagination ul li {
		width: 36px;
		height: 36px;
		line-height: 36px;
	}

	.video-content {
		width: 85%;
	}

	.video-content video {
		display: block;
		margin: 0 auto;
		width: 100%;
		height: auto;
	}
	.recommendation-slider .swiper-slide .benefit-amount{
		font-size: 20px;
	}
	.recommendation-slider .swiper-slide .benefit-name{
		font-size: 18px;
	}
}

@media (max-width: 500px) {
	.faq-list .faq-answer .faq-text{
		margin-left: 10px;
		line-height: 24px;
	}
	.faq-list .faq-question{
		padding: 14px 18px;
	}
	.blog-news-tabs{
		padding: 0 30px;
	}
	.blog-news-tabs .swiper-slide{
		padding: 0 19px;
		line-height: 34px;
	}
	.recommendation-slider .swiper-slide .learn-more-btn{
		font-size: 18px;
		line-height: 45px;
	}
	.recommendation-slider .swiper-slide .insurance-card-body{
		padding: 17px 20px 25px;
	}
	.recommendation-slider .swiper-slide .insurance-card-header{
        padding: 20px 20px 20px;
    }
	.recommendation-slider .btn .iconfont{
        font-size: 18px;
    }
    .recommendation-slider .btn{
        width: 36px;
        height: 36px;
    }
	.footer-copyright {
		line-height: 24px;
	}

	.footer-middle .footer-contact-info .footer-social-icons {
		margin-top: 15px;
	}

	.footer-middle .footer-contact-info .contact-email {
		font-size: 16px;
		margin-top: 10px;
	}

	.footer-middle .footer-contact-info .contact-phone-number {
		font-size: 20px;
	}

	.footer-middle .footer-contact-info .contact-phone {
		margin-top: 10px;
	}

	.footer-middle .footer-contact-info .contact-title {
		font-size: 18px;
	}

	.footer-middle .footer-contact-info {
		margin-left: 20px;
	}

	.footer-middle .footer-qr-code img {
		width: 90px;
	}

	.footer-middle .footer-qr-code {
		padding: 10px 10px 7px;
	}

	.footer-top .footer-top-nav {
		gap: 0 15px;
	}

	.footer-top .footer-logo img {
		width: 120px;
	}

	.innerBanner .learn-more-btn {
		font-size: 16px;
		padding: 0 21px;
		line-height: 36px;
	}

	.header .logo img {
		width: 149px;
	}
.font40,
	.font36 {
		font-size: 22px;
	}

	.font60 {
		font-size: 24px;
	}

	.font80 {
		font-size: 26px;
	}

	.font90 {
		font-size: 26px;
	}

	.font200 {
		font-size: 30px;
	}

	.font30 {
		font-size: 20px;
	}

	.font46,
	.font48 {
		font-size: 22px;
	}

	.pc-aslide-content-c .list {
		min-width: 249px;
	}

	.pc-aslide-content-c .list .li-des {
		padding-top: 15px;
		margin-top: 15px;
	}

	.pc-aslide-content-c .list li:not(:last-child) {
		margin-bottom: 25px;
	}

	.pc-aslide-content-c .list .li-des a {
		font-size: 14px;
		line-height: 2;
	}

	.pc-aslide-content-c .list .li-des a:not(:last-child) {
		margin-bottom: 5px;
	}

	.pc-aslide-content-c .list .li-title {
		font-size: 16px;
	}

	.pc-aslide-content-t {
		height: 50px;
	}

	.pc-aslide-content-t .logo img {
		width: 100px;
	}
}