/**/
* {
	margin: 0;
	padding: 0;
}

address,
b,
big,
blockquote,
body,
center,
cite,
code,
dd,
del,
div,
dl,
dt,
em,
fieldset,
font,
form,
h3,
h4,
i,
iframe,
img,
input,
li,
ol,
p,
span,
td,
th,
u,
ul {
	margin: 0;
	padding: 0;
}

body {
	font-size: 14px;
	font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial,
		"PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei",
		"WenQuanYi Micro Hei", sans-serif;
	color: #333;
	padding: 0px;
	margin: 0px;
}

button:foucs {
	border: none !important;
	outline: none !important;
}

button::-moz-focus-inner {
	border-color: transparent;
}

input[type="number"] {
	-moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

ul,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

i {
	font-style: normal;
}

a {
	color: #333;
}

a:hover {
	text-decoration: none;
}

img {
	vertical-align: middle;
}

input {
	outline: none;
}

.clear {
	clear: both;
	height: 0px;
	overflow: hidden;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
	clear: both;
}

.clearfix {
	/*兼容 IE*/
	zoom: 1;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.dot {
	display: flex;
	align-items: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.dot2 {
	display: -webkit-box;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

/*t图片样式*/
.center-block {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

img {
	border: 0px;
	vertical-align: middle;
}

.img-responsive {
	display: block;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}

.avatar {
	display: block;
	overflow: hidden;
	width: 100%;
}

.avatar img {
	width: 100%;
	transition: all 0.3s;
}

.avatar:hover img {
	transform: scale(1.1);
}

/*--------------------------------------------------------------
# 头部Header
--------------------------------------------------------------*/
/* 顶部导航 */
#header.header-scrolled {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 996;
	background: #fff;
}

.headDiv {
	width: 100%;
	z-index: 9999;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	background: rgba(255, 255, 255, 0.5);
	box-shadow: none;
	position: relative;

	transition: all 0.3s ease;
}

.headDiv:hover {
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.headDiv .top_menu {
	height: 80px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5vw;
}

.headDiv .logo {
	height: 80px;
	display: flex;
	align-items: center;
}

.headDiv .logo img {
	height: 68px;
}

.nav {
	height: auto;
}

.nav>ul {
	display: flex;
	list-style: none;
	width: 100%;
	justify-content: s;
}

.nav li {
	position: relative;
}

.nav li.active a {
	color: #f8931d;
}

.nav ul li a {
	display: flex;
	align-items: center;
	height: 80px;
	padding: 0 10px;
	text-align: center;
	font-size: 16px;
	color: #333;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

/* 箭头按钮样式 */
.arrow-btn {
	display: inline-flex;
	margin-left: 8px;
	padding: 5px;
	cursor: pointer;
	transition: transform 0.3s;
	z-index: 2;
}

.arrow-btn i {
	font-size: 12px;
	color: #666;
	transition: transform 0.3s ease;
	display: none;
}

/* 多级菜单通用样式 */
.submenu {
	display: none;
	background-color: #fff;
	z-index: 999;
	border-top: 2px solid #f8931d;
	position: absolute;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	min-width: 280px;
	border-radius: 0 0 5px 5px;
	overflow: visible;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(10px);
}

.nav ul li ul li {
	width: 100%;
	display: block;
	border-bottom: 1px solid #f0f0f0;
}

.nav ul li ul li:last-child {
	border-bottom: none;
}

.nav ul li ul li a {
	display: flex;
	align-items: center;
	color: #666 !important;
	font-size: 16px;
	height: 45px;
	line-height: 24px;
	padding: 0 15px;
	text-align: left;
	width: 100%;
}

.nav ul li ul li a:hover {
	background: #333;
	color: #fff !important;
}

.nav ul li.login,
.nav ul li.register {
	display: none;
}

/* 三级菜单 */
.third-level {
	top: -3px;
	left: 100%;
	border-top: 3px solid #333;
	transform: translateX(10px);
}

/* 四级菜单 */
.fourth-level {
	top: 0;
	left: 100%;
	border-top: 3px solid #ff9800;
}

/* 汉堡菜单按钮 */
.hamburger {
	display: none;
	cursor: pointer;
	background: #f8931d;
	border-radius: 5px;
	padding: 10px;
	z-index: 10000;
	margin-left: 15px;
	transition: all 0.3s;
}

.hamburger:hover {
	background: #00405c;
}

.hamburger div {
	width: 25px;
	height: 3px;
	background: white;
	margin: 4px 0;
	transition: all 0.3s ease;
}

/* 移动端菜单激活状态 */
.toggle .line1 {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
	opacity: 0;
}

.toggle .line3 {
	transform: rotate(45deg) translate(-5px, -6px);
}

/*登录注册  */
.dflex_end {
	color: #333;
	font-size: 16px;
	background: #eee;
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 18px 5vw;
}

.top_btn {
	display: flex;
	justify-content: flex-end;
}

.top_btn a {
	padding: 6px 18px;
	display: block;
	margin: 0 8px;
	font-size: 14px;
	color: #fff;
	background: #f8931d;
	border-radius: 6px;
}

.top_btn a:hover {
	color: #fff;
	background: #666;
}

#header.header-scrolled .dflex_end {
	display: none;
}

/*首页banner图*/
#banner .swiper {
	width: 100%;
	height: 100%;
	position: relative;
}

#banner .swiper-slide {
	background-position: center;
	background-size: cover;
	position: relative;
}

#banner .swiper-slide img {
	display: block;
	width: 100%;
}

#banner .swiper-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	color: #fff;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	cursor: pointer;
	overflow: hidden;
	z-index: 10;
	width: 50px;
	font-size: 30px;
	line-height: 50px;
	height: 50px;
	transition: all 0.5s ease;
	outline: none;
}

#banner .swiper-button:hover {
	background: #f8931d;
}

.btn-prev {
	left: 6%;
}

.btn-next {
	right: 6%;
}

#banner .swiper-pagination-bullet {
	width: 13px;
	height: 10px;
	display: inline-block;
	background: #fff;
	opacity: 0.9;
	margin: 0 5px;
	border-radius: 20px;
	transition: opacity 0.5s, background-color 0.5s, width 0.5s;
	transition-delay: 0.5s, 0.5s, 0s;
}

#banner .swiper-pagination-bullet-active {
	opacity: 1;
	background: #f8931d;
	width: 35px;
	transition-delay: 0s;
}

#banner .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 30px;
}

/*首页banner图 end*/
/*  */
.entry_box {
	position: relative;
	height: 60px;
	background: rgba(255, 255, 255, 1);
	width: 450px;
	border-top-left-radius: 10px;
	padding: 20px 30px;
	margin-top: 30px;
	z-index: 9;
}

.entry_box:after {
	background-color: #fff;
	clip-path: polygon(0 100%,
			0 0,
			8% 0,
			17% 2%,
			24% 6%,
			31% 13%,
			75% 87%,
			81% 93%,
			88% 98%,
			95% 100%,
			100% 100%,
			0 100%);
	content: "";
	height: 100%;
	position: absolute;
	right: -60px;
	top: 0;
	-webkit-transform: translateX(-0.2px);
	transform: translateX(-0.2px);
	width: 62px;
	z-index: 2;
}

.main_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #ebebeb;
	padding-bottom: 15px;
}

.main_title p i {
	padding-right: 10px;
}

.main_title p {
	display: flex;
	align-items: center;
	font-size: 24px;
	color: #191919;
	font-weight: 600;
}

.main_title a {
	color: #343434;
	font-size: 18px;
}

.main_title a:hover {
	color: #f8931d;
}

.entrance {
	background: rgba(255, 255, 255, 1);
	border-radius: 0 16px 16px 16px;
	padding: 20px;
	position: relative;
	z-index: 9;
	margin-top: -2px;
}

.entrance .entrance_box {
	display: flex;
	align-items: stretch;
}

.entrance .ent_item {
	flex: 1;
	position: relative;
	box-sizing: border-box;

	margin: 10px;
	padding: 50px 70px 50px 20px;
	background-image: linear-gradient(180deg, #f3f5f8, #fff);
	border: 2px solid #fff;
	box-shadow: 8px 8px 20px rgba(55, 99, 170, 0.1), -8px -8px 20px #fff;
	border-radius: 4px;
}

.entrance .ent_item .icon1 {
	background-image: url(../images/icon1.png);
}

.entrance .ent_item .icon2 {
	background-image: url(../images/icon2.png);
}

.entrance .ent_item .icon3 {
	background-image: url(../images/icon3.png);
}

.entrance .ent_item b {
	color: #191919;
	font-size: 22px;
	font-weight: 600;
	line-height: 38px;
}

.entrance .ent_item p {
	color: #595959;
	font-size: 16px;
	line-height: 28px;
}

.item-icon {
	position: absolute;
	width: 48px;
	height: 48px;
	bottom: 50px;
	right: 20px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: top;
}

.entrance .ent_item:hover {
	background: #f4f6f9;
}

.item-icon.is-enter {
	-webkit-animation: item-icon-enter 0.3s steps(16) forwards;
	animation: item-icon-enter 0.3s steps(16) forwards;
}

.item-icon.is-leave {
	-webkit-animation: item-icon-leave 0.3s steps(16) forwards;
	animation: item-icon-leave 0.3s steps(16) forwards;
}

@-webkit-keyframes item-icon-enter {
	0% {
		background-position: 0 0;
	}

	to {
		background-position: 0 -768px;
	}
}

@keyframes item-icon-enter {
	0% {
		background-position: 0 0;
	}

	to {
		background-position: 0 -768px;
	}
}

@-webkit-keyframes item-icon-leave {
	0% {
		background-position: 0 -768px;
	}

	to {
		background-position: 0 0;
	}
}

@keyframes item-icon-leave {
	0% {
		background-position: 0 -768px;
	}

	to {
		background-position: 0 0;
	}
}

.btn_go {
	margin: 20px auto;
	display: flex;
	justify-content: center;
}

.btn_go a {
	display: block;
	width: 160px;
	text-align: center;
	background: #f8931d;
	box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, 0.1);
	color: #fff;
	border: 2px solid #fff;
	box-shadow: 8px 8px 20px rgba(55, 99, 170, 0.1), -8px -8px 20px #fff;
	font-size: 18px;
	line-height: 52px;
	border-radius: 4px;
	transition: all 0.3s ease-in-out;
}

.btn_go a:hover {
	background-color: #fcb25d;
}

/* 常用国家 */
.cycountry ul {
	margin-top: 20px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.cycountry ul li a {
	padding: 10px;
	margin-right: 50px;
	display: block;
	flex: 1;
	font-size: 18px;
}

.cycountry ul li a:hover {
	color: #f8931d;
}

.cycountry .lxing {
	width: 0;

	height: 0;

	border: 5px solid transparent;

	border-bottom-color: #999;

	position: relative;

	top: -6px;
	margin-right: 10px;
	display: inline-block;
}

.cycountry .lxing::after {
	content: "";

	position: absolute;

	left: -5px;

	top: 5px;

	width: 0;

	height: 0;

	border: 5px solid transparent;

	border-top-color: #999;
}

/* 海外知识产权布局 */
.main_box {
	background: -webkit-gradient(linear,
			left top,
			left bottom,
			from(hsla(0, 0%, 100%, 0.9)),
			to(hsla(0, 0%, 100%, 0.8)));
	background: linear-gradient(180deg,
			hsla(0, 0%, 100%, 0.9) 0,
			hsla(0, 0%, 100%, 0.8));
	border-radius: 16px;
	margin-top: 20px;
	padding: 30px;
}

.abroad_box {
	margin-top: 20px;
}

.cs_r .cs_rtit {
	position: relative;

	margin-bottom: 28px;
}

.cs_r .cs_rtit ul {
	display: flex;
}

.cs_r .cs_rtit ul li {
	display: inline-block;
	background-color: #f2f2f2;

	width: calc(50% - 10px);
	text-align: center;
	margin-right: 10px;
}

.cs_r .cs_rtit ul li a {
	font-size: 18px;
	display: block;
	line-height: 45px;
	color: #333;
	font-weight: 600;
	padding: 10px;
}

.cs_r .cs_rtit ul li.on {
	background-color: #57585a;
}

.cs_r .cs_rtit ul li.on a {
	color: #fff;
}

.cs_r .cs_rtit .cs_lmore {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.cs_r .cs_rtit .cs_lmore a {
	float: left;
	width: 19px;
	height: 19px;
	border: solid 1px #cccccc;
	text-align: center;
	line-height: 17px;
	border-radius: 50%;
	font-family: fangsong;
	font-size: 10px;
	display: none;
}

.cs_r .cs_rtit .cs_lmore a:hover {
	color: #f8931d;
	border-color: #f8931d;
}

.cs_r .cs_rc ul {
	position: relative;
}

.cs_r .cs_rc div {
	display: none;
}

.cs_r .cs_rc ul::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 7px;
	bottom: 7px;
	width: 1px;
	background: #cccccc;
}

.cs_r .cs_rc ul li {
	position: relative;
	padding-left: 35px;
	margin-top: 30px;
	color: #343434;
}

.cs_r .cs_rc ul li:nth-child(1) {
	margin-top: 0;
}

.cs_r .cs_rc ul li.on a h3 {
	color: #f8931d;
	font-weight: 600;
	font-size: 18px;
}

.cs_r .cs_rc ul li.on a div {
	display: block;
}

.cs_r .cs_rc ul li.on::after {
	content: "";
	position: absolute;
	left: 1px;
	top: 3px;
	width: 19px;
	height: 18px;
	border: solid 1px #f8931d;
	border-radius: 50%;
	background: #fff;
	z-index: 8;
}

.cs_r .cs_rc ul li.on::before {
	background: #f8931d;
}

.cs_r .cs_rc ul li a h3 {
	position: relative;
	padding-right: 85px;
	font-size: 18px;
	font-weight: normal;
	line-height: 24px;
	color: #333333;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.cs_r .cs_rc ul li a h3 span {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 24px;
	letter-spacing: 0px;
	color: #999999;
}

.cs_r .cs_rc ul li a div {
	display: none;
	padding-bottom: 20px;
	border-bottom: 1px dashed #f0f0f0;
	margin-top: 20px;
}

.cs_r .cs_rc ul li a div p {
	font-size: 18px;
	overflow: hidden;
	color: #666666;
}

.cs_r .cs_rc ul li::before {
	content: "";
	position: absolute;
	width: 11px;
	height: 10px;
	background-color: #cccccc;
	border-radius: 50%;
	left: 5px;
	top: 7px;
	z-index: 9;
}

/*  */
.abroad_fr {
	width: calc(25% - 20px);
	margin-left: 20px;
	display: flex;
	flex-direction: column;
}

.abroad_fr a {
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	flex: 1;
	margin: 10px 0;
	padding: 20px;
}

.abroad_fr .abg1 {
	background: url(../images/abg1.png) no-repeat center;
	background-size: cover;
}

.abroad_fr .abg2 {
	background: url(../images/abg2.png) no-repeat center;
	background-size: cover;
}

.abroad_fr .abg3 {
	background: url(../images/abg3.png) no-repeat center;
	background-size: cover;
}

.abroad_fr a:hover {
	background: #fcb25d;
}

.case-icon {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	align-items: center;

	justify-content: center;

	transition: all 0.5s;
}

.case-content2 b {
	color: #fff;
	text-align: center;
	margin-top: 10px;
	font-size: 24px;
	display: block;
}

.case-content2 p {
	line-height: 24px;
	font-size: 14px;
	text-align: center;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: #fff;
	text-align: left;
}

/* 专利授权前景预评估系统 */

.assessment {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	align-items: stretch;
}

.assessment a {
	transition: all 0.3s;
	text-align: center;
	flex: 1;
	margin: 10px;
	background-color: #fff;
	padding-bottom: 30px;
	border-radius: 10px;
}

.assessment .assbg1 {
	background: url(../images/zl1.png) no-repeat;
	background-size: cover;
}

.assessment .assbg2 {
	background: url(../images/zl2.png) no-repeat;
	background-size: cover;
}

.assessment .assbg3 {
	background: url(../images/zl3.png) no-repeat;
	background-size: cover;
}

.assessment a img {
	margin: 10px auto;
}

.assessment a .name {
	color: #fff;
	padding: 30px 20px;
	text-align: center;
	font-size: 24px;
	background: rgba(255, 255, 255, 0.2);
}

.assessment a .info p {
	font-size: 16px;
	margin: 10px;
	color: #fff;
}

.assessment a .more {
	color: #fff;
	margin: 10px auto;
	width: 120px;
	box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, 0.1),
		inset 0 4px 20px 0 hsla(0, 0%, 100%, 0.5);
	display: block;
	padding: 10px 20px;
}

.assessment a:hover .more {
	background: #f8931d;
}

/* 新闻 */
.content_wrap {
	display: flex;
}

.news {
	width: 75%;
}

.in_news {
	margin-top: 20px;
	width: 100%;
}

.in_news a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	box-sizing: border-box;
	border: 1px #f1f1f1 solid;
	background: rgba(255, 255, 255, 0.4);

	padding: 10px;
	overflow: hidden;
	margin-bottom: 15px;
	transition: 0.3s;
}

.in_news .info {
	width: 65%;
}

.in_news .img {
	width: 32%;
}

.in_news .img img {
	width: 100%;

	overflow: hidden;
	transition: 1s;
}

.in_news p {
	font-size: 16px;
	color: #999;
	line-height: 26px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.in_news b {
	font-size: 18px;
	line-height: 32px;
	display: block;
	margin: 10px 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.in_news span {
	display: block;
	font-size: 16px;
	color: #999;
}

.in_news a:hover {
	background: #f8931d;
	background-size: 100%;
}

.in_news a:hover b {
	color: #ffffff;
}

.in_news a:hover {
	box-shadow: 0px 2px 10px #ddd;
}

.in_news a:hover p {
	color: #ffffff;
}

.news-list a {
	line-height: 40px;
	font-size: 18px;
	border-bottom: 1px solid #f1f1f1;
	padding: 8px 0;
	color: #333;
	display: flex;
	justify-content: space-between;
}

.news-list a:hover {
	color: #f8931d;
}

.news-list .lxing {
	width: 0;

	height: 0;

	border: 5px solid transparent;

	border-bottom-color: #999;

	position: relative;

	top: -6px;
	margin-right: 10px;
	display: inline-block;
}

.news-list .lxing::after {
	content: "";

	position: absolute;

	left: -5px;

	top: 5px;

	width: 0;

	height: 0;

	border: 5px solid transparent;

	border-top-color: #999;
}

.news-list em {
	color: #999;
	font-style: normal;
	font-size: 16px;
}

.news-list i {
	width: 79%;
}

/* 手机底部导航 */
.bottom_nav {
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 999;
	background: #dedede;
	display: none;
}

.bottom_nav_item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.bottom_nav a {
	flex: 1;
	color: #333;
	border-right: 1px solid #c9c9c9;
	border-left: 1px solid #ededed;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bottom_nav a span {
	margin-left: 6px;
}

.bottom_nav a:last-child {
	border-right: none;
}

.bottom_nav a:first-child {
	border-left: none;
}

/* 友情链接 */
.link_box {
	margin-top: 30px;
}

.link {
	display: flex;
	flex-wrap: wrap;
	padding: 20px 0;
	justify-content: space-between;
}

.link a {
	color: #666;
	width: calc(25% - 10px);
	margin: 5px;
	background: #f7f7f7;
	text-align: center;
}

.link a img {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.link a:hover {
	color: #f29600;
}

/*底部footer*/
.footer {
	margin-top: 30px; width: 100%; float: left;
}

.footer-nav {
	display: flex;
	display: -webkit- box;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #dedede;
}

.footer-nav li {
	position: relative;
}

.footer-nav a {
	display: block;
	color: #000;
	height: 80px;
	line-height: 80px;
	text-align: center;
	font-size: 16px;
}

.footer-nav a:hover {
	color: #f29600;
}

.foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.foot span {
	color: #333;
	font-size: 20px;
	font-weight: bold;
	padding-right: 8px;
}

.footer_logo {
	display: flex;
	align-items: center;
}

.footer_logo p {
	width: 100%;
	color: #333;
	font-size: 14px;
	line-height: 28px;
	margin-left: 20px;
}

.foot .ewm {
	display: flex;
}

.foot .ewm div {
	margin: 10px;
}

.foot .ewm p {
	text-align: center;
	margin-top: 10px;
	color: #333;
}

.foot .ewm img {
	width: 100px;
	border: 1px solid #f1f1f1;
	margin-top: 20px;
}

.foot .ft-contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	flex-direction: column;
}

.copyright {
	padding: 20px 10px;
	text-align: center;
	color: #333;
}

.copyright a {
	color: #333;
}

/*右侧固定*/
.fix-side {
	position: fixed;
	right: 0px;
	bottom: 100px;
	width: 100px;
	z-index: 2000;
}

.fix-side li {
	border-bottom: solid 1px rgba(255, 255, 255, 0.2);
	width: 100px;
	height: 100px;
	padding: 10px;
	background-color: #f8931d;
}

.fix-side li:hover {
	background-color: #333;
}

.fix-side .gzh {
	position: relative;
	width: 100px;
	text-align: center;
}

.fix-side .gzh .show {
	width: 80px;
	right: 10px;
	color: #fff;
	cursor: pointer;
}

.fix-side .gzh:hover .box {
	display: block;
}

.fix-side .gzh .box {
	display: none;
	position: absolute;
	left: -190px;
	bottom: 0;
	width: 190px;
	height: 200px;
	color: #fff;
	background-color: #fff;
	border: solid 1px #e5e5e5;
	border-right: none;
	box-sizing: border-box;
}

.fix-side .gzh .box img {
	margin-top: 15px;
	width: 150px;
	height: 150px;
}

.fix-side .gzh:hover .box b {
	display: block;
	color: #333;
	font-size: 18px;
	margin-top: 30%;
}

.fix-side .gzh:hover .box span {
	display: block;
	font-size: 15px;
	color: #666;
	line-height: 28px;
	margin-top: 10px;
}

.fix-side .gzh .box p {
	color: #666;
}

.fix-side p {
	margin-top: 10px;
	color: #fff;
}

.fix-side li a {
	display: block;
	text-align: center;
	width: 100%;
	height: 100%;
	color: #fff;
}

.fix-side li img {
	width: 32px;
	margin-top: 10px;
}

.fix-side .return {
	border-bottom: none;
	transform: scaleY(0);
	transition: 0.5s;
	background-color: #333;
}

.fix-side .active {
	transform: scale(1);
}

/* 内页海外知识产权布局 */
.inbanner {
	position: relative;
}

.inbanner {
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.inbanner img {
	width: 100%;
}

.search_box {
	width: 100%;
	margin: 40px auto;
	display: flex;
	z-index: 2;
}

.sch-inputBox {
	width: calc(100% - 168px);

	display: block;
	height: 60px;

	background: #f5f5f5;
	border: 1px solid #dedede;
	border-radius: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.search_box form{	display: flex;
	justify-content: space-between;
	align-items: center; width: 100%; }
.sch-input {
	display: block;
	width: calc(100% - 56px);
	height: 27px;
	background: #f5f5f5;
	font-size: 16px;
	color: #333;
	text-indent: 1em;
	border: 0;

	margin-left: 5px;
}

.sch-btn {
	display: block;
	width: 46px;
	height: 46px;
	background: url(../images/ico-sch.png) no-repeat center;
	margin-right: 10px;
}

.sch-btn-filter {
	display: inline-block;
	width: 158px;
	height: 60px;
	border-radius: 5px;
	font-size: 18px;
	color: #fff;
	text-align: center;
	line-height: 60px;
	background-color: #333;
	cursor: pointer;
	font-family: "å¾®è½¯é›…é»‘";
	outline: 0;
	border: 0;
	margin-right: 10px;
}

.mod_bord_ul {
	display: flex;
	align-items: center;
	margin: 20px 0;
}

.mod_bord_li img {
	width: 22px;
	margin-bottom: 2px;
}

.mod_bord_li {
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	transition: all 0.36s;
}

.mod_bord_li {
	padding-left: 16px;
	position: relative;
}

.mod_bord_li:hover {
	color: #f8931d;
}

.mod_bord_ul .mod_bord_li:first-child {
	padding-left: 0;
}

.mod_bord_ul .mod_bord_li:nth-child(3),
.mod_bord_li:nth-child(4) {
	padding-left: 36px;
}

.mod_bord_ul .mod_bord_li:nth-child(2)::after {
	position: absolute;
	right: -36px;
	top: 10px;
	content: "";
	width: 26px;
	height: 26px;
	background: url(../images/jtxy.png) no-repeat;
}

.mod_bord_ul .mod_bord_li:nth-child(3)::after {
	position: absolute;
	right: -36px;
	top: 10px;
	content: "";
	width: 26px;
	height: 26px;
	background: url(../images/jtxy.png) no-repeat;
}

.mod_bord_ul .mod_bord_li:last-child::after {
	background: none;
}

.layout_box {
	box-shadow: 0 0 10px #f1f1f1;
	margin-top: 40px;
	display: flex;
}

.layout_box .slide_nav {
	width: 22%;
	background: #f5f6f8;
}

.layout_box .slide_nav img {
	margin-right: 15px;
	filter: grayscale(100);
}

.layout_box .slide_nav ul li.current img {
	filter: grayscale(0);
}

.layout_box .slide_nav ul li:hover img {
	filter: grayscale(0);
}

.layout_box .slide_nav .slide_tit {
	text-align: center;
	background: #f8931d url(../images/zhishi.png) no-repeat left top;
	font-weight: bold;
	padding: 40px;
	color: #fff;
	font-size: 24px;
}

.layout_box .slide_nav ul {}

.layout_box .slide_nav ul li {
	flex: 1;
}

.layout_box .slide_nav ul li a {
	display: block;
	text-align: left;
	font-size: 16px;
	padding: 20px 15px;
	color: #343434;
	border-left: 3px solid #f5f6f8;
}

.layout_box .slide_nav ul li a:hover {
	border-left: 3px solid #f8931d;
	background: #fff;
	color: #f8931d;
	font-weight: bold;
}

.layout_box .slide_nav ul li.current a {
	border-left: 3px solid #f8931d;
	color: #f8931d;
	font-weight: bold;
}

.layout_box .content_fr {
	background: #fff;
	width: 78%;
	padding: 30px 40px;
}

.layout_box .content_fr .title {
	font-size: 16px;
	margin-bottom: 20px;
	border-bottom: 1px solid #edf1f5;
	padding-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.layout_box .content_fr .title a {
	color: #666;
}

.layout_box .content_fr .title a:hover {
	color: #f8931d;
}

.layout_box .content_fr .title img {
	height: 50px;
	margin-right: 10px;
}

.layout_box .content_fr .title .price b {
	color: #e80e21;
	font-size: 20px;
}

.subtitle {
	color: #7f8c8d;
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.dropdown-container {
	background: #fff;

	overflow: hidden;
	margin-bottom: 30px;
}

.dropdown-header {
	background: #e5e5e5;
	color: #333;
	padding: 15px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.dropdown-header:hover {
	background: #d6d6d6;
}

.dropdown-header h2 {
	font-size: 18px;
	font-weight: 600;
	margin: 0;
}

.dropdown-icon {
	transition: transform 0.3s ease;
}

.dropdown-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.dropdown-content.active {
	max-height: 600px;
}

.search-box {
	padding: 20px;
	background: #f8f9fa;
	border-bottom: 1px solid #eee;
}

.search-box input {
	width: 100%;
	padding: 10px;
	border: 2px solid #ddd;
	border-radius: 50px;
	font-size: 16px;
	transition: all 0.3s ease;
}

.search-box input:focus {
	border-color: #f8931d;
	box-shadow: 0 0 0 3px rgba(26, 42, 108, 0.2);
	outline: none;
}

/* 选项卡样式 */
.tabs-container {
	background: #fff;
	padding: 15px 20px 0;
}

.tabs-header {
	display: flex;
	border-bottom: 2px solid #eee;
	margin-bottom: 15px;
}

.tab-item {
	padding: 12px 20px;
	cursor: pointer;
	font-size: 1.1rem;
	font-weight: 500;
	color: #7f8c8d;
	position: relative;
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
}

.tab-item:hover {
	color: #f8931d;
}

.tab-item.active {
	color: #f8931d;
	border-bottom: 2px solid #f8931d;
}

.tab-item i {
	margin-right: 8px;
}

.tab-content {
	display: none;
	padding: 10px 0 20px;
}

.tab-content.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.countries-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 15px;
	padding: 10px 0;
	max-height: 350px;
	overflow-y: auto;
}

.country-item {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	border-radius: 10px;
	background: #f8f9fa;
	transition: all 0.2s ease;
	cursor: pointer;
	border: 1px solid #eee;
	text-decoration: none;
	color: #333;
}

.country-item:hover {
	background: #e9ecef;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-color: #f8931d;
}

.country-item img {
	width: 40px;
	height: 30px;
	object-fit: cover;
	border-radius: 4px;
	margin-right: 15px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.country-item span {
	font-size: 1.1rem;
	font-weight: 500;
	color: #2c3e50;
}

.stat-card {
	text-align: center;
	flex: 1;
	padding: 10px;
}

.stat-card h3 {
	color: #f8931d;
	margin-bottom: 10px;
	font-size: 1rem;
}

.stat-card .count {
	font-size: 1.8rem;
	font-weight: bold;
	color: #b21f1f;
	line-height: 1;
}

.stat-card .label {
	color: #7f8c8d;
	font-size: 0.9rem;
}

/* 全球知识产权保护法律环境与政策解读详情 */
.fr_search {
	display: flex;
	justify-content: flex-end;
}

.table-container {
	overflow-x: auto;
}

.layui-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
}
.layui-form-checkbox span{ text-align: center; background-color: #FAEDE0; color: #F8931D;}
.layui-form-checkbox:hover span {
    background-color: #FAEDE0;
}
.layui-form-checked span, .layui-form-checked:hover span {
    background-color: #03B25A;
	color: #fff;
}
.layui-form-checked i, .layui-form-checked:hover i {
    color: #03B25A;
}
.layui-form-checkbox i{ border: 1px solid #FAEDE0;}
.layui-form-checkbox:hover i {
    border-color: #FAEDE0;}
.layui-form-item .layui-form-checkbox{ margin-top: 15px;}
.layui-form-checkbox{ margin-right: 20px;}
.layui-table thead tr {
	background: #f1f4f7;
}

.layui-table th {
	font-size: 16px;
	color: #394263;
	padding: 16px 15px;
	text-align: center;
}

.layui-table td {
	padding: 10px;
	text-align: center;
	border-bottom: 1px solid #eee;
	transition: all 0.3s;
}

/* 文字省略样式 */
.ellipsis-cell {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 0;
}

.layui-table tr:hover td {
	background-color: #f5f9ff;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(79, 172, 254, 0.1);
}

.layui-laypage {
	display: block;
	margin: 30px auto;
	text-align: center;
}

.layui-laypage a:hover {
	background: #f8931d;
	color: #fff;
}

.btn {
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s;
	border: none;
}

.btn-edit {
	background-color: #fff8e1;
	color: #ff8f00;
}

.btn:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

/* 全球各国专利布局政策解读
 */

.patent_list ul li {
	position: relative;
	align-items: center;
	border-bottom: 1px dashed #dedede;
	padding: 10px 0;
	display: flex;
	justify-content: space-between;
}

.patent_list ul li a {
	padding-left: 15px;
	width: calc(100% - 100px);
	display: block;
	line-height: 36px;
	font-size: 16px;
}

.patent_list ul li span {
	width: 80px;
	color: #999;
	display: block;
}

.patent_list ul li::before {
	position: absolute;
	content: "";
	left: 0;
	top: 25px;
	width: 6px;
	border-radius: 100%;
	height: 6px;
	background: #999;
}

.patent_list ul li a:hover {
	color: #f8931d;
}

/* 专利授权前景预评估系统 */
.bg2 {
	background: #eef5ff url(../images/inbanner2.png) no-repeat;
	background-size: cover;
}

.bg3 {
	background: #ebf1ff url(../images/inbanner3.png) no-repeat;
	background-size: cover;
}

.bg4 {
	background: #dff4ff url(../images/inbanner4.png) no-repeat;
	background-size: cover;
}

.banner-title {
	margin-top: 150px;
	margin-bottom: 50px;
	text-align: center;
}

.banner-title span {
	display: inline-block;
	font-family: PingFangSC-Semibold;
	font-size: 50px;
	color: #091221;
	line-height: 62px;
	font-weight: 600;
}

.banner-title p {
	margin-top: 20px;
	font-size: 18px;
}

.banner-title-one {
	background: linear-gradient(to right, #ff7103 0%, #333333 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.banner-title-two {
	background: linear-gradient(to right, #0060ff 0%, #29acfe 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.analysis {
	padding: 60px 0;
}

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

.analysis .tit b {
	font-size: 30px;
	color: #000;
	display: block;
}

.analysis .tit p {
	font-size: 20px;
	margin-top: 20px;
}

.input_text {
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 20px;
	display: flex;
	overflow: hidden;
	box-shadow: 0px 0px 0px 0.5px var(--dsr-input-border);
	border-radius: 6px;
	background: #fff;
	border: 1px solid #eef0f4;
	margin: 30px;
}

.chat-input {
	font-size: inherit;
	line-height: 20px;
	word-break: break-word;
	white-space: pre-wrap;
	border: none;
	width: 100%;
	margin: 0;
	color: #666;
	background-color: transparent;
	padding: 0;
	font-family: inherit;
	display: block;
}

.btn-sub {
	background-image: linear-gradient(270deg, #29acfe 0%, #2468f2 69%);
	border-radius: 10px;

	width: 148px;
	height: 50px;
	color: #fff;
	font-weight: 600;
	margin: 20px auto;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-sub:hover {
	background-image: linear-gradient(270deg, #2468f2 0%, #29acfe 69%);
}

.btn-sub a {
	color: #fff;
}

.assessment2 a {
	position: relative;
	border: 2px solid #fff;
	padding-bottom: 0;
	opacity: 0.47;
}

.assessment2 a:hover {
	box-shadow: 0 0 10px #ccc;
	border: 2px solid #fff;
	opacity: 1;
}

.assessment2 a::after {
	position: absolute;
	top: 100%;
	left: 47%;
	content: "";
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-top: 20px solid #fff;
	opacity: 0;
}

.assessment2 a.active {
	opacity: 1;
}

.assessment2 a.active::after {
	opacity: 1;
}

/* 企业海外知识产权健康体检 */
.box-wrapper {
	background: #fffdfb url(../images/bg3.png) no-repeat top center;
	background-size: 100%;
	padding-top: 100px;
}

.process-container {
	background: white;
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	margin-bottom: 40px;
	margin-top: 40px;
}

.process-steps {
	display: flex;
	justify-content: space-between;
	padding: 20px 40px;
	background: linear-gradient(to right, #f8931d 0%, #00f2fe 100%);
}

.step {
	text-align: center;
	position: relative;
	flex: 1;
	padding: 20px 10px;
	color: white;
	cursor: pointer;
	transition: all 0.3s ease;
}

.step:not(:last-child):after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid rgba(255, 255, 255, 0.3);
	transform: translateY(-50%);
}

.step.active {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.step-title {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.step-desc {
	font-size: 0.95rem;
	opacity: 0.9;
}

.process-content {
	padding: 40px;
	min-height: 500px;
}

.step-content {
	display: none;
	/* animation: fadeIn 0.5s ease; */
}

.step-content.active {
	display: block;
}

.section-title {
	font-size: 1.8rem;
	color: #f8931d;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid #e3f2fd;
	display: flex;
	align-items: center;
}

.section-title i {
	margin-right: 15px;
}

.form-section {
	background: #f8f9ff;
	border-radius: 10px;
	padding: 25px;
	margin-bottom: 25px;
	border-left: 4px solid #4cd4b8;
}

.form-section-title {
	font-size: 1.4rem;
	color: #f8931d;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

.form-section-title i {
	margin-right: 10px;
}

.layui-form-item {
	margin-bottom: 20px;
}

.required:after {
	content: "*";
	color: #ff5722;
	margin-left: 4px;
}

.analysis-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
	margin-top: 30px;
}

.analysis-card {
	background: white;
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	border-top: 4px solid #4cd4b8;
	transition: all 0.3s ease;
}

.analysis-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.analysis-card h3 {
	color: #f8931d;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.analysis-card h3 i {
	margin-right: 10px;
}

.analysis-card p {
	color: #555;
	line-height: 1.7;
}

.chart-container {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 30px;
}

.chart-card {
	flex: 1;
	min-width: 300px;
	background: white;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.chart-title {
	text-align: center;
	font-size: 1.3rem;
	color: #f8931d;
	margin-bottom: 20px;
}

.chart {
	height: 320px;
	background: #f8f9ff;
	border-radius: 8px;
	display: flex;
	align-items: flex-end;
	justify-content: space-around;

}

.chart-bar {
	width: 50px;
	background: linear-gradient(to top, #4cd4b8, #00f2fe);
	border-radius: 5px 5px 0 0;
	position: relative;
	text-align: center;
	color: white;
	font-weight: bold;
}

.chart-bar-label {
	position: absolute;
	bottom: -25px;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: 14px;
	color: #555;
}

.market-checkbox {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.layui-form-checkbox i {
	height: 30px;
}

.action-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

.action-btn {
	padding: 12px 35px;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	display: flex;
	align-items: center;
}

.action-btn i {
	margin-right: 10px;
}

.btn-primary {
	background: linear-gradient(to right, #4cd4b8 0%, #00f2fe 100%);
	color: white;
}

.btn-secondary {
	background: linear-gradient(to right, #ff9a9e 0%, #fad0c4 100%);
	color: white;
}

.action-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-content .layui-form-label {
	width: auto;
}

.process-content .layui-form-item {
	display: flex;
}

.process-content .layui-input-block {
	margin-left: 0;
	flex: 1;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* step3 */
.report-container {
	background: white;
	border-radius: 15px;

	overflow: hidden;
	margin-bottom: 40px;
}

.report-header {
	background: #4facfe;
	padding: 30px;
	color: white;
	position: relative;
	overflow: hidden;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 2;
}
.company-info {
	flex: 2;
}
.company-info h2 {
	font-size: 2rem;
	margin-bottom: 10px;
}
.company-info p {
	font-size: 20px;
}
#JP12 { font-size: 16px;line-height: 1.8;}
.Summary {
	font-size:16px;
	line-height: 1.8;
	margin: 20px 0;
}
.Summary b {
	color: #0d8bf2;
}

.Summary span {
	font-size: 24px;
	display: block;
	margin-bottom: 15px;
	font-weight: bold;
	color: #333;
}
/* 表格 */
.stats-table table {
	width: 100%;
	border-collapse: collapse;

	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.stats-table th {
	background: #1e5799;
	color: white;
	font-weight: 600;
	padding: 12px 15px;
	text-align: center;
}

.stats-table td {
	padding: 12px 15px;
	text-align: center;
	border: 1px solid #eee;
}

.stats-table tr:nth-child(even) {
	background-color: #f8fafd;
}

.stats-table tr:hover {
	background-color: #edf5ff;
}

/* 世界地图 */
.map_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#map {
	height: 500px;
	margin: 0;
	width: 800px;
}

.map_country {
	width: calc(100% - 830px);
}

.trademark-chart {
	height: 380px;
}

.trademark-chart2 {
	height: 380px;
	width: calc(100% - 450px);
}

#map2 {
	height: 380px;
	width: 400px
}

.trademark-chart3 {
	height: 380px;
	width: calc(100% - 450px);
}

#map3 {
	height: 380px;
	width: 400px
}

.dflex {
	display: flex;
	margin-top: -50px;
	align-items: center;
	justify-content: space-between;
}

/*  */
.report-body {
	padding: 40px 0;
}

.section {
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 1px solid #eee;
}

.section-title {
	font-size: 1.8rem;
    color: #f8931d;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e3f2fd;
    display: flex
;
    align-items: center;
    justify-content: center;
}

.section-title i {
	margin-right: 15px;
}

.chart-container {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 20px;
}

.chart-card {
	flex: 1;
	min-width: 300px;
	height: 380px;
	background: #f8f9ff;
	border-radius: 10px;
	padding: 20px;
	overflow: hidden;
	border: 1px solid #dedede;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.chart-title {
	text-align: center;
	font-size: 1.3rem;
	color: #1e88e5;
	margin-bottom: 15px;
}



.analysis-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
	margin-top: 25px;
}

.analysis-card h3 {
	color: #1e88e5;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.analysis-card h3 i {
	margin-right: 10px;
}

.recommendation-list {
	padding-left: 25px;
}

.recommendation-list li {
	margin-bottom: 12px;
	line-height: 1.6;
	position: relative;
}

.recommendation-list li:before {
	content: "•";
	color: #4facfe;
	font-weight: bold;
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}

.risk-map {
	background: #2c3e50;
	border-radius: 10px;
	padding: 20px;
	margin-top: 25px;
	position: relative;
	overflow: hidden;
}

.risk-title {
	color: white;
	text-align: center;
	margin-bottom: 20px;
	font-size: 1.5rem;
}

.risk-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 15px;
	height: 300px;
}

.risk-item {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.risk-item:hover {
	transform: scale(1.05);
	box-shadow: 0 0 15px rgba(79, 172, 254, 0.5);
}

.risk-item.high {
	background: linear-gradient(to bottom, #ff6b6b, #ff8e8e);
}

.risk-item.medium {
	background: linear-gradient(to bottom, #ffa502, #ffb142);
}

.risk-item.low {
	background: linear-gradient(to bottom, #2ed573, #7bed9f);
}

.risk-region {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 5px;
}

.risk-level {
	font-size: 0.9rem;
	opacity: 0.9;
}

.report-footer {
	background: #f8f9ff;
	padding: 30px;
	border-top: 1px solid #eee;
}

.footer-title {
	font-size: 1.5rem;
	color: #1e88e5;
	margin-bottom: 20px;
	text-align: center;
}

.strategy-list {}

.strategy-card {
	background: white;
	border-radius: 10px;
	padding: 20px;
	margin: 20px 0;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	border-top: 3px solid #4facfe;
}

.strategy-card h4 {
	color: #1e88e5;
	margin-bottom: 15px;
	display: flex;
	font-size: 20px;
	align-items: center;
}



.strategy-card ul {
	padding-left: 20px;
}

.strategy-card li {
	margin-bottom: 10px;
	line-height: 1.8;
	font-size: 16px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ip课堂 */
.classroom_list a {
	margin-bottom: 15px;
	padding: 15px;
	align-items: center;
	display: flex;
	background: #f7f9fa;
	border: 1px solid #e8edf2;
}

.classroom_list a .day {
	background: #fff;
	width: 100px;
	text-align: center;
	padding: 10px;
}

.classroom_list a .day b {
	display: block;
	font-size: 18px;
	color: #f8931d;
	margin-bottom: 10px;
}

.classroom_list .info {
	padding-left: 15px;
	width: calc(100% - 110px);
}

.classroom_list .info b {
	display: block;
	margin-bottom: 10px;
}

.classroom_list a:hover b {
	color: #f8931d;
}

.classroom_list a:hover {
	box-shadow: 0 0 10px #dedede;
}

.course_zb {
	flex-wrap: wrap;
	display: flex;
	justify-content: space-between;
}

.course_zb .news_video {
	display: flex;
	flex-direction: column;

	width: calc(33.33% - 20px);
	margin-bottom: 20px;
	background: #000;
}

video::poster {
	object-fit: cover;
	filter: brightness(50%);
}

.course_zb .news_video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.course_zb .news_video:last-child {
	margin-right: 0;
}

.course_zb span img {
	display: block;
	transition: all 0.3s ease-out;
	width: 100%;
}

.course_zb p {
	line-height: 28px;
	color: #333;
	padding: 8px;
	text-align: left;
	font-size: 14px;
	width: 100%;
	background: #f5f5f5;
}

.course_zb p {
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

/* 案例 */
.filter-div {
	background: white;
	border-radius: 12px;
	padding: 25px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	margin-bottom: 40px;
	margin-top: 40px;
}

.filter-div h3 {
	font-size: 1.4rem;
	margin-bottom: 20px;
	color: #333;
	display: flex;
	align-items: center;
	gap: 10px;
}

.filter-div h3 i {
	color: #333;
}

.industry-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.filter-btn {
	padding: 10px 24px;
	background: #f0f4f8;
	border: none;
	border-radius: 30px;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.filter-btn.active,
.filter-btn:hover {
	background: #f8931d;
	color: white;
}

.filter-btn i {
	font-size: 1.1rem;
}

.cases-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.case-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	position: relative;
}

.case-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.case-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 6px 15px;
	border-radius: 30px;
	font-size: 0.85rem;
	font-weight: 600;
	z-index: 2;
}

.badge-new-energy {
	background: #4caf50;
	color: white;
}

.badge-smart-manufacturing {
	background: #2196f3;
	color: white;
}

.badge-biomedical {
	background: #e91e63;
	color: white;
}

.case-img {
	height: 200px;
	background-size: cover;
	background-position: center;
}

.case-img img {
	height: 200px;
	width: 100%;
}

.case-content {
	padding: 20px;
}

.case-content h4 {
	font-size: 18px;
	margin-bottom: 12px; min-height: 42px;
	color: #333;width: 100%;overflow: hidden;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;
}

.case-content p {
	color: #666;
	margin-bottom: 20px;
	font-size: 16px;width: 100%;overflow: hidden;display: -webkit-box;-webkit-line-clamp: 4;-webkit-box-orient: vertical;
}

.case-link {
	display: inline-block;
	padding: 10px 25px;
	background: #f8931d;
	color: white;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 500;
	transition: all 0.3s ease;
	margin-top: 10px;
}

.case-link:hover {
	background: #333;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(26, 58, 95, 0.25);
	color: #fff;
}

.stats-div {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 20px;
	margin: 60px 0;
}

.stat-card {
	background: white;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	flex: 1;
	min-width: 220px;
	transition: all 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.stat-card i {
	font-size: 3rem;
	color: #f8931d;
	margin-bottom: 20px;
}

.stat-card .number {
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 5px;
}

.stat-card .label {
	font-size: 1.1rem;
	color: #666;
}

/* 专利申请流程 */
.appl_process {
	padding: 20px 0; font-size: 16px; line-height: 200%; text-indent: 24px;
}
.appl_process table td{ padding: 10px;  text-indent: 0;}
.appl_process .process_tit {
	color: #f8931d;
	font-size: 24px;
	display: block;
	text-align: center;
}

.process_content .profile {
	border-radius: 10px;
	background: #f5f5f5;
	font-size: 16px;
	line-height: 32px;
	margin-top: 20px;
	border: 1px dashed #f8931d;
	padding: 20px;
}

.process_list {
	margin: 60px 0;
}

.process_list .item {
	position: relative;
	padding: 5px 0 50px 0;
	padding-left: 50px;
}

.process_list .item::before {
	content: "";
	position: absolute;
	left: 20px;
	top: 0;
	width: 1px;
	height: 100%;
}

.process_list .item .number {
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	line-height: 40px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 100%; text-indent: 0;
}

.process_list .item .info {
	padding: 20px;
	background: #fff3e0;
	border-radius: 10px;
}

.process_list .item .info p {
	line-height: 32px;
	font-size: 16px;
}

.process_list .item b {
	font-size: 18px;
	display: block;
	margin-bottom: 20px;
}

.process_list .item.color1::before {
	background: #fff3e0;
}

.process_list .item.color1 .number {
	background: #fff3e0;
}

.process_list .item.color2::before {
	background: #ffe082;
}

.process_list .item.color2 .number {
	background: #ffe082;
}

.process_list .item.color3::before {
	background: #ffcc80;
}

.process_list .item.color3 .number {
	background: #ffcc80;
}

.process_list .item.color4::before {
	background: #ffa726;
}

.process_list .item.color4 .number {
	background: #ffa726;
}

.process_list .item.color5::before {
	background: #f57c00;
}

.process_list .item.color5 .number {
	background: #f57c00;
}

/* 评估结果 */
.assessment_result {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
}

.assessment_result .ressult_fl {
	border-radius: 0 12px 12px 0;
	box-shadow: 0 8px 10px rgba(0, 0, 0, 0.05);
	width: 180px;
	background: #fff;
}

.assessment_result .ressult_fl ul {
	position: sticky;
	top: 80px;
}

.assessment_result .ressult_fl li a.on {
	background: #ffead6;
	border-right: 2px solid #f8931d;
}

.assessment_result .ressult_fl li a:hover {
	background: #ffead6;
	border-right: 2px solid #f8931d;
}

.assessment_result .ressult_fl li a {
	padding: 20px;
	color: #333;
	border-right: 2px solid #fff;
	display: block;
	font-size: 18px;
}

.assessment_result .ressult_fr {
	align-items: stretch;
	display: flex;
	width: calc(100% - 220px);
	padding-right: 50px;
}

.ressult_fr .result_conclusion {
	width: 50%;
	margin-right: 10px;
	max-height: 80vh;
	overflow-y: auto;
}

.ressult_fr .result_target {
	width: 50%;
	margin-left: 10px;
	max-height: 80vh;
	overflow-y: auto;
}

/* 自定义滚动条样式 */
.ressult_fr .result_conclusion::-webkit-scrollbar {
	width: 4px;
}

.ressult_fr .result_conclusion::-webkit-scrollbar-track {
	background: #eee;
	border-radius: 0 0 12px 0;
}

.ressult_fr .result_conclusion::-webkit-scrollbar-thumb {
	background: #a8a8a8;
	border-radius: 4px;
}

.ressult_fr .result_conclusion::-webkit-scrollbar-thumb:hover {
	background: var(--secondary-color);
}

.ressult_fr .result_target::-webkit-scrollbar {
	width: 4px;
}

.ressult_fr .result_target::-webkit-scrollbar-track {
	background: #eee;
	border-radius: 0 0 12px 0;
}

.ressult_fr .result_target::-webkit-scrollbar-thumb {
	background: #a8a8a8;
	border-radius: 4px;
}

.ressult_fr .result_target::-webkit-scrollbar-thumb:hover {
	background: var(--secondary-color);
}

.result_card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 8px 10px rgba(0, 0, 0, 0.05);
	padding: 30px;

	position: relative;
	overflow: hidden;
}

.result_card:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #efbe49, #fa7806);
}

.result_card-title {
	display: flex;
	align-items: center;
	font-size: 18px;

	color: #333;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid #eef2f7;
}

.result_card-title h2 {
	font-size: 24px;
	font-weight: bold;
}

.result_card-title i {
	margin-right: 15px;
	background: linear-gradient(135deg, #efbe49, #fa7806);
	color: white;
	width: 45px;
	height: 45px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(74, 144, 226, 0.3);
}

.score-section {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 25px;
	margin-bottom: 30px;
}

.overall-score {
	flex: 1;
	min-width: 320px;
	padding: 30px;
	background: linear-gradient(135deg,
			rgba(240, 248, 255, 0.8),
			rgba(230, 240, 255, 0.8));
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	margin-bottom: 18px;
}

.overall-score h4 span {
	font-weight: normal;
	font-size: 16px;
}

.overall-score h4 {
	margin-bottom: 30px;
	font-weight: 600;
	color: #e74c3c;
	font-size: 20px;
}

.score-circle {
	position: relative;
	width: 160px;
	height: 160px;
	margin: 0 auto 20px;
}

.score-circle svg {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}

.circle-bg {
	fill: none;
	stroke: #e0e0e0;
	stroke-width: 12;
}

.circle-progress {
	fill: none;
	stroke: #e74c3c;
	stroke-width: 12;
	stroke-linecap: round;
	stroke-dasharray: 439.82;
	stroke-dashoffset: 439.82;
	transition: stroke-dashoffset 1s ease;
}

.score-value {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 36px;
	font-weight: 800;
	color: #e74c3c;
	text-shadow: 0 2px 4px rgba(231, 76, 60, 0.2);
}

.score-text {
	font-size: 20px;
	color: #e74c3c;
	text-align: center;
}

.score-text span {
	font-size: 40px;
	font-weight: 700;

	margin-top: 10px;
}

.score-description {
	font-size: 1.2rem;
	margin-top: 10px;
	color: #555;
	text-align: center;
	font-weight: 500;
}

.rating-levels {
	flex: 1;
	min-width: 300px;

	background: white;
	border-radius: 12px;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.rating-level {
	padding: 18px 20px;
	margin-bottom: 18px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}

.rating-level:hover {
	transform: translateX(5px);
}

.rating-level.A {
	background: linear-gradient(90deg,
			rgba(46, 204, 113, 0.1),
			rgba(46, 204, 113, 0.05));
	border-left: 5px solid #2ecc71;
}

.rating-level.B {
	background: linear-gradient(90deg,
			rgba(241, 196, 15, 0.1),
			rgba(241, 196, 15, 0.05));
	border-left: 5px solid #f1c40f;
}

.rating-level.C {
	background: linear-gradient(90deg,
			rgba(231, 76, 60, 0.1),
			rgba(231, 76, 60, 0.05));
	border-left: 5px solid #e74c3c;
}

.rating-level .level {
	font-size: 1.8rem;
	font-weight: 800;
	width: 50px;
	text-align: center;
	margin-right: 20px;
}

.rating-level.A .level {
	color: #2ecc71;
	text-shadow: 0 2px 4px rgba(46, 204, 113, 0.2);
}

.rating-level.B .level {
	color: #f1c40f;
	text-shadow: 0 2px 4px rgba(241, 196, 15, 0.2);
}

.rating-level.C .level {
	color: #e74c3c;
	text-shadow: 0 2px 4px rgba(231, 76, 60, 0.2);
}

.rating-level .desc {
	flex: 1;
	font-size: 1.15rem;
}

.module-scores {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	margin-top: 20px;
}

.module-score {
	flex: 1;
	min-width: 250px;
	padding: 25px 20px;
	background: white;
	border-radius: 12px;

	text-align: center;
	background: #f7f7f7;
	transition: all 0.3s ease;
}

.module-score:hover {
	transform: translateY(-5px);
}

.module-score.custom {
	border: 1px dashed #dedede;
}

.module-name {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #2c3e50;
}

.module-value {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 10px;
	display: block;
	color: #3498db;
}

.module-total {
	font-size: 1.1rem;
	color: #7f8c8d;
	font-weight: 500;
}

.recommendation-list {
	padding-left: 25px;
}

.recommendation-list li {
	margin-bottom: 18px;
	position: relative;
	padding-left: 30px;
	font-size: 16px;
	line-height: 1.7;
}

.recommendation-list li:before {
	content: "!";
	position: absolute;
	left: 0;
	top: 3px;
	width: 26px;
	height: 26px;
	background: #e74c3c;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.1rem;
	box-shadow: 0 3px 8px rgba(231, 76, 60, 0.3);
}

.metrics-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	margin-top: 20px;
}

.metric-section {
	width: 100%;
	margin-bottom: 30px;
}

.metric-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #eee;
}

.metric-title {
	font-size: 20px;
	font-weight: 600;
	color: #333;
}

.metric-score {
	margin-left: 10px;
	font-size: 20px;
	font-weight: 700;
}

.metric-score b {
	color: #f8931d;
}

.metric-row {
	background: white;

	overflow: hidden;

	margin-bottom: 15px;
}

.metric-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 10px 0;
	text-align: center;
	border: 1px solid #dedede;
	transition: all 0.3s ease;
	border-radius: 5px;
}

.metric-item:last-child {
	border-right: none;
}

.metric-item:hover {
	background: #f9fbfe;
}

.metric-name {
	color: #f8931d;
	background: #fff5e8;
	font-weight: 600;
	width: 40%;

	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 13px 15px;
}

.metric-value {
	font-size: 16px;
	font-weight: 600;
	width: 40%;
	display: flex;
	justify-content: space-between;
	padding: 0 15px;
}

.metric-desc {
	color: #999;
	font-size: 16px;
	width: 20%;
	border-left: 1px solid #dedede;
}

.metric-desc b {
	color: #f8931d;
}

.metric-p {
	margin-bottom: 15px;
}

.metric-p span {
	color: #e74c3c;
}

.highlight {
	background: #ffebee;
	color: #e74c3c;
	padding: 3px 10px;
	border-radius: 5px;
	font-weight: 700;
}

.btn-detail {
	display: inline-block;
	color: #3498db;
	font-weight: normal;
	font-size: 14px;
}

.metric-highlight .metric-value {
	color: #e74c3c;
}

/* 相似专利 */
.assessment_result .same_fr {
	width: calc(100% - 220px);
	padding-right: 50px;
}

.same {
	background: white;
	width: 100%;
	padding: 15px;
	border-radius: 10px;
	box-shadow: 0 8px 10px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.same .filter-title {
	font-size: 16px;
	color: #333;
	display: flex;
	align-items: center;
	gap: 8px;
}

.same .btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	flex: 1;
}

.same .filter-btn {
	padding: 10px 15px;
	background: #fcf2e5;
	border: none;
	border-radius: 50px;
	color: #f8931d;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
	outline: none;
}

.same .filter-btn:hover {
	background: #f8931d;
	color: #fff;
}

.same .filter-btn.active {
	background: #f8931d;
	color: white;
}

.same .reset-btn {
	padding: 12px 25px;
	background: #f8f9fa;
	border: 1px solid #e2e8f0;
	border-radius: 50px;
	font-weight: 600;
	color: #4a5568;
	cursor: pointer;
	transition: all 0.3s ease;
	outline: none;
}

.same .filter-btn i {
	font-size: 13px;
}

.same_fr .table-container {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

	overflow-x: auto;
}

.same_fr thead {
	background: linear-gradient(135deg, #efbe49, #fa7806);
}

.same_fr table {
	width: 100%;
	border-collapse: collapse;
	min-width: 1000px;
}

.same_fr th {
	color: white;
	padding: 16px 20px;
	text-align: left;
	font-weight: 600;
	position: sticky;
	top: 0;
}

.same_fr td {
	padding: 14px 20px;
	border-bottom: 1px solid #edf2f7;
}

.same_fr tr:last-child td {
	border-bottom: none;
}

.same_fr .relevance-medium {
	color: #dd6b20;
	font-weight: 700;

	display: inline-block;
}

.same_fr .relevance-low {
	color: #718096;
	font-weight: 700;
	background: #f0f4f8;
	padding: 5px 10px;
	border-radius: 20px;
	display: inline-block;
}

.same_fr .status-active {
	color: #38a169;
	font-weight: 600;
}

.same_fr .status-pending {
	color: #e74c3c;
	font-weight: 600;
}

.same_fr .patent-title {
	font-weight: 600;
	color: #2d3748;
}

.same_fr .patent-number {
	font-family: "Courier New", monospace;
	color: #4a5568;
}

.same_fr .entity {
	background: #f0f4f8;
	padding: 5px 10px;
	border-radius: 4px;
	display: inline-block;
}

.same_fr .checkbox-cell {
	text-align: center;
	width: 40px;
}

.same_fr .checkbox {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.same_fr .action-bar {
	position: sticky;
	bottom: 0;
	background: white;
	padding: 15px 25px;
	border-top: 1px solid #e2e8f0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

.same_fr .selected-count {
	font-weight: 600;
	color: #2c5282;
}

/* 登录 注册 */
.login_box {
	background: url(../images/loginbg.jpg) no-repeat center;
	background-size: cover;
	height: 100vh;
	overflow: hidden;
}

.top_logo a:hover {
	color: #f8931d;
}

.top_logo {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}

.top_logo img {
	margin: 0;
	height: 60px;
}

.login_box .login_wrap {
	display: -webkit-box;
	display: flex;
	align-items: center;
	justify-content: space-between;

	height: calc(100vh - 160px);

	position: relative;
}

.login_box .container .mob-logo {
	display: none;
	margin: 20px;
}

.login_box .container .logo {
	position: absolute;
	left: 50px;
	top: 50px;
}

.container .logo img {
	width: 100%;
}

.login_box .fl_wrap {
	width: 50%;
}

.login_box .fl_wrap b {
	font-size: 36px;
	color: #333;
	margin-bottom: 40px;
	display: block;
}

.login_box .fr_wrap {
	width: 45%;
	padding: 40px;
	display: -webkit-box;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

/* 登录样式 */
.login-container {
	position: relative;
	z-index: 2;
	width: 490px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 10px;

	overflow: hidden;
	transition: transform 0.3s ease;
	padding-bottom: 30px;
}

.login-header {
	text-align: center;
	padding: 30px 20px 20px;
}

.login-header h2 {
	color: #333;
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 10px;
}

.login-header p {
	color: #666;
	font-size: 14px;
}

.form-container {
	padding: 25px 40px;
}

.fr_wrap .yanzm {
	display: flex;
}

.fr_wrap .form-group .code-btn {
	background: #eee;
	cursor: pointer;
	height: 46px;
	width: 110px;
	border: 1px solid #eaeaea;
	border-left: none;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.form-group {
	margin-bottom: 20px;
	position: relative;
}

.form-group i {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	font-size: 16px;
}

.layui-input {
	padding-left: 30px !important;
	height: 46px !important;
	border-radius: 4px !important;
	border: 1px solid #ddd !important;
	transition: all 0.3s ease !important;
	width: 100%;
}

.layui-input:focus {
	border-color: #f8931d !important;
	box-shadow: 0 0 0 2px rgba(30, 159, 255, 0.2) !important;
}

.remember-forgot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	font-size: 14px;
}

.remember-me {
	display: flex;
	align-items: center;
}

.remember-me a {
	color: #f8931d;
}

.remember-me input {
	margin-right: 5px;
}

.forgot-password {
	color: #f8931d;
	text-decoration: none;
	transition: color 0.3s;
}

.forgot-password:hover {
	color: #0d8bf2;
	text-decoration: underline;
}

.submit-btn {
	width: 100%;
	height: 46px;
	background: linear-gradient(to right, #f8931d, #e37c03);
	border: none;
	border-radius: 4px;
	color: white;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(248, 147, 29, 0.3);
}

.submit-btn:hover {
	background: linear-gradient(to right, #e37c03, #f8931d);
	box-shadow: 0 6px 15px rgba(248, 147, 29, 0.4);
}

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

/* 个人中心 */
/* 
.per-box {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.per_slide { background: #F5F6F8;   }
.per_slide ul li{   font-size: 16px; }
.per_slide ul li a {display: block; padding: 15px ; margin:20px 0;  }
.per_slide ul li img { filter: grayscale(100); height: 24px; margin-right: 10px;}
.per_slide ul li a:hover {   color: #f8931d; background:#FFF7F2;}
.per_slide ul li a:hover img {filter: grayscale(0);}
.per_slide ul li.on a{
  color: #f8931d;
  background: #fff;
}
.per_slide ul li.on img { filter: grayscale(0); } */

.per_cont .tit_b {
	border-left: 3px solid #f8931d;
	font-size: 20px;
	display: block;
	padding-left: 10px;
}

.per_title {
	padding: 30px 0 15px;
	margin-bottom: 20px;
	border-bottom: 1px solid #dedede;
	display: flex;
	justify-content: space-between;
}

.per_title b {
	font-size: 20px;
}

.per_warp {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.per_warp .per_money {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 49%;
	padding: 30px;
	color: #fff;
	box-shadow: 0 0 10px #b9afd1;
	background-image: linear-gradient(to right, #cec3e5, #588de9);
	background-image: -webkit-linear-gradient(to rignt, #cec3e5, #588de9);
}

.per_warp .per_money p {
	font-size: 36px;
}

.per_warp .per_money b {
	display: block;
	font-weight: normal;
	margin-bottom: 20px;
	font-size: 20px;
}

.per_warp .per_num {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 49%;
	padding: 30px;
	color: #fff;
	box-shadow: 0 0 10px #74b4ce;
	background-image: linear-gradient(to right, #85d9f8, #43a2f8);
	background-image: -webkit-linear-gradient(to rignt, #85d9f8, #43a2f8);
}

.per_warp .per_num p {
	font-size: 36px;
}

.per_warp .per_num b {
	display: block;
	font-weight: normal;
	margin-bottom: 20px;
	font-size: 20px;
}

/* 体检报告记录 */
.test_record {
	margin-top: 30px;
}

.test_record b {
	font-size: 18px;
	font-weight: normal;
	margin-bottom: 20px;
	display: block;
}

.test_record .test_record_item {
	margin-bottom: 15px;
}

.test_record .date_time {
	margin-bottom: 15px;
}

.test_record .test_con {
	position: absolute;
	right: 0;
	bottom: 0;
	background: #31ce7c;
	border-radius: 10px 0 10px;
	color: #fff;
	width: 100px;
	height: 34px;
	line-height: 34px;
	text-align: center;
}

.test_record .jl_info {
	position: relative;
	background: #fdfdfd;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 0 10px #eee;
}

.test_record .jl_info span {
	margin-top: 10px;
	color: #666;
	display: block;
}

.test_record .test_record_item i {
	color: #999;
}

.test_record .jl_info p {
	font-size: 16px;
}

.test_record a:hover .jl_info p {
	color: #f8931d;
}

.test_record a:hover .jl_info {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.test_record em {
	display: block;
	font-style: normal;
	width: 80px;
	margin-top: 5px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: #f1f1f1;
}

.test_record_item a:hover .test_con {
	background: #f8931d;
}

/* 订阅国家 */
.per_country {
	margin-top: 30px;
}

.country-counter {
	margin: 20px 0;
	font-size: 18px;
}

.country-counter b {
	color: #f8931d;
}

.per_country ul {
	list-style: none;
}

.per_country ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid #eee;
	transition: all 0.4s ease;

	margin-bottom: 10px;
}

.per_country ul li:hover {
	background-color: #f0f8ff;

	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.per_country ul li p {
	display: flex;
	align-items: center;
	gap: 15px;
}

.per_country ul li img {
	width: 50px;
	height: 30px;
	border-radius: 4px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	object-fit: cover;
}

.per_country ul li span {
	font-size: 1.3rem;
	font-weight: 500;
}

.cancel_btn {
	background: linear-gradient(to right, #f8931d, #e37c03);
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 30px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;

	display: flex;
	align-items: center;
	gap: 8px;
	outline: none;
}

.cancel_btn:focus {
	outline: none;
}

.cancel_btn:hover {
	background: linear-gradient(to left, #f8931d, #e37c03);
}

/* 系统通知 */
.notice_top {
	display: flex;
	gap: 15px;
	margin-top: 30px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.notice-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 30px;
	background-color: #f1f1f1;
	color: #555;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.notice-btn:hover,
.notice-btn.active {
	background: #f8931d;
	color: white;
	box-shadow: 0 4px 10px rgba(248, 147, 29, 0.3);
}

.notice_list ul li {
	padding: 20px;
	display: flex;
	transition: all 0.3s;
	align-items: center;
	cursor: pointer;
	margin: 15px 0;
	line-height: 1.8;
	border-radius: 10px;
	border: 1px solid #dedede;
}

.notice_list ul li .info {
	margin-left: 20px;
	flex-grow: 1;
}

.notice_list ul li p {
	position: relative;
	color: #666;
	font-size: 16px;
}

.notice-time {
	color: #999;
}

.notice-time i {
	margin-right: 10px;
}

.notice-type {
	color: #f64d3e;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background: #ff5722;
	display: inline-block;
	margin-right: 5px;
}

.text-hidden {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.notice_list ul li:hover {
	border: 1px solid #2196f3;
	background: #f0faff;
}

/* 联系专家 */
.contact_top {
	text-align: center;
	margin-bottom: 40px;
	margin-top: 30px;
}

.contact_top b {
	font-size: 20px;
	margin-bottom: 15px;
	font-weight: 700;
	color: #2c3e50;
	position: relative;
	display: block;
}

.contact_top p {
	font-size: 16px;
	color: #666;
}

.support-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.support-card {
	background: white;
	border-radius: 15px;
	padding: 35px 30px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	border: 1px solid #eee;
	position: relative;
	overflow: hidden;
}

.support-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
	border-color: #f8931d;
}

.icon-wrapper {
	width: 100px;
	height: 100px;
	background: #f1f1f1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	transition: all 0.3s ease;
}

.support-card:hover .icon-wrapper {
	transform: scale(1.1);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-wrapper i {
	font-size: 35px;
	color: #666;
}

.support-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #333;
}

.contact-info {
	font-size: 20px;
	font-weight: 700;
	color: #f8931d;
	margin-bottom: 25px;
	transition: all 0.3s ease;
}

.contact-info a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-info a:hover {
	color: #3498db;
}

.support-text {
	color: #7f8c8d;
	line-height: 1.6;
	margin-bottom: 20px;
	font-size: 14px;
}

.support-card .btn {
	display: inline-block;
	background: #f8931d;
	color: white;
	padding: 14px 35px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
	border: none;
	cursor: pointer;
}

.support-card .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
	background: #f8931d;
}

.support-card .btn i {
	margin-right: 10px;
}

.hours {
	background-color: #f8f9fa;
	border-radius: 15px;
	padding: 30px;
	margin-top: 40px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hours-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin-top: 15px;
}

.hour-item {
	background: white;
	padding: 12px 25px;
	border-radius: 50px;
	font-weight: 500;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* 我的设置 */
.my_set {
	margin-top: 30px;
}

.my_set .form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #555;
}

.my_set .input-with-icon {
	position: relative;
}

.my_set .input-with-icon i {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
}

.my_set .form-control {
	width: 100%;
	padding: 14px 14px 14px 45px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	font-size: 1rem;
	transition: all 0.3s;
}

.my_set .form-control:focus {
	border-color: #4facfe;
	box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.2);
	outline: none;
}

.my_set .password-toggle {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #999;
}

.my_set .btn {
	display: inline-block;
	padding: 14px 28px;
	background: linear-gradient(to right, #f8931d, #e37c03);
	color: white;
	border: none;
	border-radius: 10px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.my_set .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}



.my_set .btn-block {
	display: block;
	width: 100%;
	text-align: center;
}



/* 全局样式 */
.g-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.g-align-center {
	display: flex;
	align-items: center;
}

.g-display-none {
	display: none !important;
}



.padding-top148 {
	padding-top: 148px;
}



.green {
	background: #4CAF50;

}

.yellow {
	background: #FFC107;

}

.red {
	background: #F44336;

}

.indicator-text {
	font-size: 16px;
	color: #fff;
}

.indicator {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.score-container {
	flex: 1;
	text-align: center;
}

.score {
	font-size: 4.5rem;
	font-weight: bold;
	line-height: 1;
}

.color-box {
	width: 25px;
	height: 25px;
	border-radius: 5px;
	margin-right: 10px;
	border: 2px solid #fff;
}

.score-grade {
	font-size: 1.8rem;
	font-weight: bold;
	margin-top: 5px;
}
	@media only screen and (max-width: 767px) {

				.layui-layer.layui-layer-page{
					width: 80% !important;
				}
			}