* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 14px;
    line-height: 1;
    color: #333;
    background-color: #F7F9FA
}

ul, ol, li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #415feb;
}

img {
    max-width: 100%;
    height: 100%;
    vertical-align: middle;
}

.full-container {
    width: 100%;
    padding: 0 30px;
}

.container {
    width: 1280px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

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

.justify-between {
    justify-content: space-between;
}

.header {
    background-color: #fff;
}

.logo {
    margin-right: 20px;
}

.logo-link {
    height: 24px;
}

.nav-link {
    color: #333;
    font-size: 16px;
    line-height: 68px;
    padding: 0 10px;
}

.nav-link:hover {
    color: #415feb;
}

.nav-item {
    position: relative;
}

.nav-item.dropdown {
    display: inline-block;
}

.nav-item.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    max-height: 0;
    margin-top: 40px;
    background: #fff;
    width: 160px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0px 0px 6px 0 rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #415feb;
}

.nav-item.dropdown:hover .dropdown-menu {
    max-height:2000px;
    margin-top:0;
    opacity:1;
    visibility:visible;
    -webkit-transition:opacity 0.3s linear,max-height 0s linear,margin 0.3s;
    -o-transition:opacity 0.3s linear,max-height 0s linear,margin 0.3s;
    transition:opacity 0.3s linear,max-height 0s linear,margin 0.3s;
}

.entry-item {
    margin-left: 10px;
}

.entry-item.register {
    padding: 6px 16px;
    color: #415feb;
    border: 1px solid #415feb;
    border-radius: 4px;
    margin-left: 20px;
}

.entry-item.register:hover {
    background-color: #415feb;
    color: #fff;
}

.entry-item.login {
    padding: 6px 16px;
    color: #fff;
    border: 1px solid #415feb;
    background-color: #415feb;
    border-radius: 4px;
}

.entry-item.login:hover {
    background-color: #5c77f2;
}

.user {
    position: relative;
    display: inline-block;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: bold;
}

.section-title p {
    font-size: 16px;
    margin-top: 20px;
    color: #50627f;
}

.breadcrumbs {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 12px 20px;
    border-radius: 4px;
    box-shadow: 0px 0px 6px 0 rgba(0, 0, 0, 0.05);
}

.breadcrumbs i {
    margin: 0 10px;
    color: #ddd;
}

/* 首页 */
.slider {
	position: relative;
	height: 500px;
}

.slider-video {
	right: 0;
	opacity: 1;
	background-blend-mode: overlay;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
	transition: opacity .5s;
	position: absolute;
	top: 0;
}

.slider-video-url {
	-o-object-position: center;
	object-position: center;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.slider-content {
	position: absolute;
	width: 40%;
	flex-wrap: wrap;
}

.slider-title {
	font-size: 42px;
	font-weight: bolder;
	margin-bottom: 20px;
	width: 100%;
}

.slider-desc {
	font-size: 16px;
	color: #999;
	margin-bottom: 40px;
	line-height: 1.5;
	width: 100%;
}

.slider-btn {
	width: 100%;
}

.slider-btn-item {
	display: inline-block;
	padding: 16px 36px;
	border-radius: 4px;
	background-color: #415feb;
	color: #fff;
	font-size: 16px;
}

.slider-btn-item:hover {
    color: #fff;
	background-color: #5c77f2;
}

.banner {
	background-color: #fff;
}

.banner-content {
	gap: 20px;
	padding: 20px 0;
}

.banner-item {
	margin-right: 40px;
}

.banner-item:last-child {
	margin-right: 0;
}

.banner-title {
	margin-bottom: 10px;
}

.banner-title i {
	font-size: 24px;
	margin-right: 10px;
	color: #415feb;
}

.banner-title h2 {
	font-size: 18px;
	font-weight: 500;
}

.banner-desc {
	color: #666;
	line-height: 1.5;
}

.products {
	padding: 80px 0
}

.products-intro {
    display: flex;
	gap: 20px;
}

.products-box {
    width: 100%;
	background: #fff;
	border: 1px solid #eee;
	padding: 20px;
}

.products-image {
	width: 100%;
	height: 155px;
	margin-bottom: 20px
}

.products-image img {
	width: 100%;
	height: 100%
}

.products-name {
	font-size: 20px
}

.products-meta {
	margin-top: 10px
}

.products-meta span {
	display: inline-block;
	background: #edf1ff;
	color: #50627f;
	font-size: 12px;
	padding: 6px 12px;
	margin-right: 5px
}

.products-info p {
	margin-top: 18px;
	font-size: 14px;
	line-height: 26px;
	color: #50627f
}

.products-box .button {
	margin-top: 40px;
	cursor: pointer;
	justify-content: center;
	background: #fff;
	border: 1px solid #007bff;
	width: 100%;
	font-size: 16px;
	color: #007bff;
	height: 50px;
	line-height: 50px
}

.network {
	background-color: #fff;
	padding: 80px 0;
}

.network-content {
	position: relative;
	flex-wrap: wrap;
}

.network-left {
	position: absolute;
	width: 35%;
	z-index: 1;
}

.network-info {
	margin-bottom: 20px;
	color: #4a5568;
	font-size: 17px;
	line-height: 27px;
}

.network-link {
	margin-top: 42px;
	background: transparent;
	position: relative;
	width: fit-content;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border-radius: 12px;
}

.network-link a {
	color: #415feb;
	font-size: 17px;
	font-weight: 500;
	line-height: 27px;
	letter-spacing: .2px;
	text-align: left;
	margin-right: 26px;
	white-space: nowrap;
}

.network-link i {
	position: absolute;
	right: 0;
	font-size: 14px;
	color: #415feb;
	transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.network-link .ri-arrow-right-long-line {
	opacity: 0;
	transform: translateX(-10px) scale(0.8);
}

.network-link:hover .ri-arrow-right-s-line {
	opacity: 0;
	transform: translateX(10px) scale(0.8);
}

.network-link:hover .ri-arrow-right-long-line {
	opacity: 1;
	transform: translateX(0) scale(1);
}

.network-right {
	width: 100%;
}

.network-map {
	width: 640px;
	height: 370px;
	position: relative;
	float: right;
	background: url(../img/map.svg) 50% no-repeat;
	background-size: contain;
}

.network-item {
	width: 17px;
	height: 12px;
	position: absolute;
	background: url(../img/dot.png) 50% no-repeat;
	background-size: contain;
	cursor: pointer;
}

.network-hk {
	top: 180px;
	right: 150px;
}

.network-us {
	top: 150px;
	left: 90px;
}

.network-jp {
	top: 140px;
	right: 80px;
}

.network-kr {
	top: 125px;
	right: 90px;
}

.network-sg {
	top: 210px;
	right: 175px;
}

.network-card {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: -36px;
	left: -50%;
	transform: translate(-35%, -50%);
	padding: 14px 24px;
	z-index: 1;
	background: #fff;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 500;
	white-space: nowrap;
	color: #1a202c;
	box-shadow: 0 12px 28px 0 #1a202c14;
	pointer-events: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all .3s;
}

.network .active {
	opacity: 1;
	visibility: visible;
}

.network-img {
	width: 23px;
	height: 16px;
}

.network-img img {
	width: 100%;
	height: 100%;
	box-shadow: 2px 2px 6px 0 #1a202c33;
}

.network-name {
	padding-left: 12px;
}

.network-footer {
	padding: 30px;
	background: #f9fbff;
	border-radius: 6px;
}

.network-intro-title {
	display: flex;
	align-items: center;
}

.network-intro-title i {
	color: #415feb;
	font-size: 38px;
}

.network-intro-title span {
	padding-left: 12px;
	color: #1a202c;
	font-size: 17px;
	line-height: 27px;
	font-weight: 500;
}

.network-intro-desc {
	padding-top: 10px;
	padding-left: 44px;
	font-size: 15px;
	line-height: 24px;
	color: #4a5568;
}

.honor {
	padding: 80px 0
}

.honor-list {
	justify-content: space-between;
	margin-bottom: 20px
}

.honor-list:last-child {
	margin-bottom: 0
}

.honor li {
	text-align: center;
	background: #fff;
	border: 1px solid #eee;
	padding: 20px;
	width: 240px
}

.honor li img {
	width: auto;
	height: 100px
}

.honor-title {
	font-size: 14px
}

.services {
	background: #fff;
	padding: 80px 0
}

.services-box {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 20px
}

.services-item {
	position: relative;
	overflow: hidden;
	cursor: pointer
}

.services-content {
	position: relative;
	padding: 30px;
	z-index: 999
}

.services-image {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	overflow: hidden;
	background-image: -moz-linear-gradient(-15deg,#d3dff0 0%,#e9eef6 100%);
	background-image: -webkit-linear-gradient(-15deg,#d3dff0 0%,#e9eef6 100%);
	background-image: -ms-linear-gradient(-15deg,#d3dff0 0%,#e9eef6 100%)
}

.services-image:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: linear-gradient(45deg,#415feb,transparent);
	opacity: 0;
	filter: brightness(1.2);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease
}

.services-base .big {
	font-size: 42px;
	color: #415feb;
	font-weight: bold
}

.services-base .small {
	font-size: 20px;
	margin-left: 2px;
	transform: translateY(-12px);
	color: #3251c3
}

.services-info {
	margin-top: 20px
}

.services-info .title {
	font-size: 22px
}

.services-info .sub-title {
	font-size: 16px;
	margin-top: 10px;
	color: #50627f
}

.services-image img {
	width: 100%;
	position: relative;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease
}

.services-item:hover .services-image img {
	transform: translate(5px,5px)
}

.services-item:hover .services-image::after {
	opacity: 0.35
}

.services-item:hover .services-base .big,.services-item:hover .services-base .small,.services-item:hover .services-info .title {
	color: #fff
}

.services-item:hover .services-info .sub-title {
	color: #f1f1f1
}

.articles {
	padding: 80px 0;
}

.articles-box {
	gap: 20px;
}

.articles-item {
	width: 33.3333%;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0px 0px 6px 0 rgba(0, 0, 0, 0.05);
}

.articles-head {
	padding: 20px;
	border-bottom: 1px solid #ddd;
}

.articles-title i {
	font-size: 24px;
	margin-right: 10px;
	color: #415feb;
}

.articles-title h2 {
	font-size: 16px;
	font-weight: 500;
}

.articles-more {
	font-size: 14px;
	color: #999;
}

.articles-list {
	padding: 10px 20px;
}

.articles-list li {
	position: relative;
	padding: 10px 0;
}

.articles-date {
	position: absolute;
	right: 0;
	color: #999;
}

.articles-link {
	padding-right: 50px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}