﻿@charset "utf-8";
/* CSS Document */
@font-face {
  font-family: "OPPOSansRegular";
  src: url(../fonts/OPPOSans-Regular.ttf);
}
@font-face {
  font-family: "OPPOSansBold";
  src: url(../fonts/OPPOSans-Bold.otf);
}
@font-face {
  font-family: "OPPOSansMedium";
  src: url(../fonts/opposans-medium.otf);
}
html {
	height: 100%;
	overflow-y: visible;
}
body, ul, li, p, h1, h2, h3, h4, h5, h6, form {
	margin: 0;
	padding: 0;
	line-height: inherit
}
header, footer {
	display: block;
}
body {
	min-width: 320px;
	font-family: "OPPOSansRegular";
	height: 100%;
	color: #333;
	overflow-x: hidden;
	font-size: clamp(12px,1.1vw,16px);
	word-wrap: break-word;
	word-break: break-word;
	line-height: 1.5;
	background: #ffffff;
	-webkit-text-size-adjust: 100%;
	user-select:none;
}
li {
	list-style: none;
}
a {
	text-decoration: none;
	color: #1a1a1a
}
a:hover, a:active, a:focus, a:visited {
	color: #1a1a1a;
	text-decoration: none;
}
img {
	max-width: 100%;
	vertical-align: middle;
}
input[type="button"],input[type="submit"],input[type="reset"],input[type="text"],input[type="tel"],button,textarea{
	-webkit-appearance:none;
}
.opacity{
	opacity: 0
}
.flex {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
}
.between {
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
.txr{
	text-align: right;
}
.txc{
	text-align: center;
}
.mt30{
	margin-top: 30px;
}
.pbox{
	overflow: hidden;
}
.bgc{
	background: #f8f8f8;
	position: relative;
	z-index: 1;
}
.poster{
	position: relative;
	overflow: hidden;
}
.poster img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.2s ease-out;
}
.container {
	width: 100%;
	padding-left: 12%;
	padding-right: 12%;
	margin: 0 auto;
	max-width: 1920px;
	box-sizing: border-box;
	position: relative;
	z-index: 10;
}
.header-container{
	height: 90px;
}
.nav-header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	z-index: 101;
/*	padding: 20px 0;*/
	transition: all 0.15s ease-out;
	background: rgba(0,0,0,0.4);
}
.brand-logo {
	display: block;
	background: url(../images/brand_logo.png) no-repeat;
	background-size: contain;
	width: 100px;
	height: 66px;
	transition: all 0.2s ease-out;
}
.mob-navbtn{
	display: none;
}
.nav-box{
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: flex-end
}
#navMenu{
	flex: 1;
}
.navMenu{
	justify-content: space-between;
}
.navMenu li{
	position: relative;
	padding: 0 clamp(10px,2vw,30px);
}
.navMenu li a{
	display: flex;
	align-items: center;
	font-size: clamp(14px,1.2vw,20px);
	padding: 30px 0;
	line-height: 30px;
	color: #121212;
	position: relative;
	font-family: "OPPOSansMedium";
	transition: all 0.2s ease-out;
	white-space: nowrap;
}
.navMenu li a:hover{
	text-decoration: none;
}
.navMenu li.active>a{
	color: #0E6DB0;
	font-family: "OPPOSansBold";
}
.navMenu li a::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0px;
	left: 0;
	background: #0E6DB0;
	border-radius: 1px;
	transform: scale(0,1);
	transition: all 0.2s ease-out;
}
.navMenu li.active a::after,.navMenu li a:hover::after{
	transform: scale(1,1);
}

.subMenu{
	position: absolute;
	top: 100%;
	left: 50%;
	display: flex;
	flex-direction: column;
	z-index: -1;
	text-align: center;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	visibility: hidden;
	opacity: 0;
	min-width: 100%;
	transition: all 0.3s ease-out;
	transform: translateX(-50%);
	box-sizing: border-box;
	margin-top: -10px;
}
.navMenu li .subMenu a{
	padding: 6px 10px;
	background: #ffffff;
	font-size: 12px;
	justify-content: center;
	white-space: nowrap;
	color: #000000
}
.navMenu li .subMenu a:hover{
	background: #0E6DB0;
	color: #ffffff
}
.navMenu li:hover .subMenu{
	opacity: 1;
	z-index: 10;
	visibility: visible;
	margin-top: 0px;
}
.subMenu a::after{
	display: none;
}
.nav-tools{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	transition: all 0.3s ease-out;
	height: auto;
	padding-left: clamp(10px,3vw,60px)
}
.nav-tools li{
	position: relative;
	width: 20px;
	height: 20px;
}
.nav-tools a{
	color: #0A0909;
	font-size: 17px;
}
.ssic{
	display: block;
	background: url(../images/issbar.png) no-repeat center;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
}
.top-search{
	width: 40px;
	height: 40px;
	position: absolute;
	right: 0;
	top: -10px;
	display: none;
}
.ssbar{
	position: absolute;
	top: 0;
	right: 0;
	background: #F7F7F7;
	height: 20px;
	line-height: 20px;
	padding: 10px 20px;
	border-radius: 4px;
	width: 100px;
	box-sizing: content-box;
	transition: all 0.3s ease-out;
}
.ssbar input{
	width: 100%;
	border: none;
	background: none;
	height: 22px;
	line-height: 22px;
	box-sizing: border-box;
	padding-left: 20px;
	outline: none
}
.iss{
	position: absolute;
	top: 50%;
	left: 14px;
	display: block;
	background: url(../images/issbar.png) no-repeat center;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
	transform: translateY(-50%)
}
.top-search.active{
	display: block
}
.top-search.active .ssbar{
	width: 300px;
}
.nav-hbg .nav-header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #ffffff;
	z-index: 1002;
	box-shadow: 0 0 6px rgba(0,0,0,0.15)
}
.mob-navbar-nav{
	display: none;
}
.banner-swiper{
	height: calc(100vh - 90px);
	overflow: hidden;
	position: relative;
}
.banner-swiper .swiper-slide{
	position: relative;
	height: 100%;
	overflow: hidden;
}
.banner-swiper .swiper-slide::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 60%;
	height: 100%;
	z-index: 1;
}
.banner-tips{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #2A2F37;
	font-size: clamp(14px,2vw,32px);
	font-family: "OPPOSansMedium";
}
.banner-tips h3{
	opacity: 0;
	font-size: clamp(14px,1.39vw,20px);
	padding:clamp(4px,1vw,18px) 0;
    font-family: "OPPOSansMedium";
	color: #0E6DB0;
}
.banner-tips p{
	line-height: 1.6;
	opacity: 0;
	width: clamp(300px,50vw,600px)
}
.banner-swiper .swiper-slide-active .banner-tips p{
	-webkit-animation: fadeInUp 1s ease-out forwards;
    animation: fadeInUp 1s ease-out forwards;
}
.banner-swiper .swiper-slide-active .banner-tips h3{
	-webkit-animation: fadeInUp 1s ease-out forwards 0.1s;
    animation: fadeInUp 1s ease-out forwards 0.1s;
}
.banner-swiper .swiper-slide-active .banner-tips p:nth-child(2n){
	-webkit-animation: fadeInUp 1s ease-out forwards 0.2s;
    animation: fadeInUp 1s ease-out forwards 0.2s;
}
.banner-swiper .swiper-slide-active .banner-tips p:nth-child(3n){
	-webkit-animation: fadeInUp 1s ease-out forwards 0.3s;
    animation: fadeInUp 1s ease-out forwards 0.3s;
}
.banner-swiper .swiper-slide-active .banner-tips p:nth-child(4n){
	-webkit-animation: fadeInUp 1s ease-out forwards 0.4s;
    animation: fadeInUp 1s ease-out forwards 0.4s;
}
.banner-swiper .swiper-slide-active .banner-tips p:nth-child(5n){
	-webkit-animation: fadeInUp 1s ease-out forwards 0.5s;
    animation: fadeInUp 1s ease-out forwards 0.5s;
}
.banner-swiper .swiper-container .swiper-slide img{
	transform: scale(1);
	transition: all 1.5s ease-out;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner-swiper .swiper-container .swiper-slide-active img{
	transform: scale(1.15);
	-webkit-animation: banScale 2.5s ease-out forwards;
    animation: banScale 2.5s ease-out forwards;
}
.effectScale{
	-webkit-animation: banScale 2.5s ease-out forwards;
    animation: banScale 2.5s ease-out forwards;
}
.banner-swiper .swiper-container,.banner-swiper .swiper-container .swiper-slide img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	cursor: default !important;
}
.banner-swiper .swiper-pagination{
	text-align: left;
}
.banner-swiper .swiper-pagination-bullet{
	background: #fff;
	width: 10px;
	height: 10px;
	margin: 0 20px !important;
	opacity: 0.5;
	position: relative;
	transition: all 0.3s ease-out;
}
.banner-swiper .swiper-pagination-bullet::after{
	content: '';
	border: 1px solid #ffffff;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 0;
	border-radius: 50%;
	transform: translate(-50%,-50%);
	opacity: 0
}
.banner-swiper .swiper-pagination-bullet-active{
	background: #fff;
	opacity: 1;
}
.banner-swiper .swiper-pagination .swiper-pagination-bullet svg{
	transform: translate(-7px,-7px);
}
.banner-swiper .swiper-pagination .swiper-pagination-bullet-active circle{
	animation: clock-animation 11s linear;
	opacity: 1
}
.banner-pagination{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.banner-num{
	color: #30363E;
	font-size: 20px !important;
}
.banner-num span{
	transition: all 0.15s ease-out;
}
.banner-num strong{
	font-size: 32px !important;
	transition: all 0.15s ease-out;
	color: #0E6DB0;
	font-family: "OPPOSansBold"
}
.banner-swiper .morebar{
	display: flex;
	align-items: center;
	background: #DB0212;
	color: #fff;
	width: 146px;
	white-space: nowrap;
	padding: 15px 20px;
	font-size: clamp(14px,1.1vw,16px);
	margin-top: 20px;
	transition: all 0.2s ease-out;
	border-radius: 4px;
	position: relative;
}
.icon{
	display: block;
	position: relative;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid #fff;
	margin-left: 20px;
}
.icon::after{
	content: '';
	background: #fff;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%)
}
.icon::before{
	content: '';
	background: #fff;
	width: 26px;
	height: 1px;
	position: absolute;
	top: 50%;
	right: 50%;
	opacity: 0.5;
	transition: all 0.3s ease-out;
	transform: translateY(-50%)
}
.banner-swiper .morebar:hover .icon::before{
	width: 0px;
}
circle {
  fill: transparent;
  stroke: white;
  stroke-width: 1px;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transform: rotate(-90deg);
  transform-origin: center;
}

@keyframes clock-animation {
  0% {
    stroke-dashoffset: 200;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/*css 动画效果*/
.fadeInUp {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}
@-webkit-keyframes banScale {
	0% {
		transform: scale(1.1)
	}
	100% {
		transform: scale(1)
	}
}
@keyframes banScale {
	0% {
		transform: scale(1.1)
	}
	100% {
		transform: scale(1)
	}
}
@-webkit-keyframes fadeInUp {
	0% {
		opacity:0;
		-webkit-transform:translate3d(0, 100px, 0);
		transform:translate3d(0, 100px, 0)
	}
	100% {
		opacity:1;
		-webkit-transform:none;
		transform:none
	}
}
@keyframes fadeInUp {
	0% {
		opacity:0;
		-webkit-transform:translate3d(0, 100px, 0);
		-ms-transform:translate3d(0, 100px, 0);
		transform:translate3d(0, 100px, 0)
	}
	100% {
		opacity:1;
		-webkit-transform:none;
		-ms-transform:none;
		transform:none
	}
}
@-webkit-keyframes fadeInLeft {
	0% {
		opacity:0;
		-webkit-transform:translate3d(-100px, 0, 0);
		transform:translate3d(-100px, 0, 0)
	}
	100% {
		opacity:1;
		-webkit-transform:none;
		transform:none
	}
}
@keyframes fadeInLeft {
	0% {
		opacity:0;
		-webkit-transform:translate3d(-100px, 0, 0);
		-ms-transform:translate3d(-100px, 0, 0);
		transform:translate3d(-100px, 0, 0)
	}
	100% {
		opacity:1;
		-webkit-transform:none;
		-ms-transform:none;
		transform:none
	}
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity:0;
		-webkit-transform:translate3d(100px, 0, 0);
		transform:translate3d(100px, 0, 0)
	}
	100% {
		opacity:1;
		-webkit-transform:none;
		transform:none
	}
}
@keyframes fadeInRight {
	0% {
		opacity:0;
		-webkit-transform:translate3d(100px, 0, 0);
		-ms-transform:translate3d(100px, 0, 0);
		transform:translate3d(100px, 0, 0)
	}
	100% {
		opacity:1;
		-webkit-transform:none;
		-ms-transform:none;
		transform:none
	}
}
input[type=checkbox]{
     cursor: pointer;
     position: relative;
     width: 15px;
     height: 15px;
     font-size: 14px;
}

input[type=checkbox]::after{
     position: absolute;
     top: 0;
     background-color: transparent;
     color: #000;
     width: 15px;
     height: 15px;
     display: inline-block;
     visibility: visible;
     padding-left: 0px;
     text-align: center;
     content: ' ';
     border-radius: 3px
}

input[type=checkbox]:checked::after{
     content: "✓";
     font-size: 12px;
     font-weight: bold;
     color: #fff;
     background-color: #DB0212;
}
.home-title-group{
	padding-top: clamp(30px,7.8vw,120px);
	padding-bottom: clamp(10px,1.3vw,30px);
}
.home-title{
	font-family: "OPPOSansBold";
	font-size: clamp(18px,2vw,40px);
	text-transform: uppercase;
	font-weight: bold;
	color: #000000;
}
.home-title span{
	color: #0E6DB0
}
.home-about{
	align-items: flex-end;
	padding-bottom: clamp(30px,6vw,90px);
}
.about-img{
	flex: 1;
}
.about-intro{
	width: 52%;
	box-sizing: border-box;
	padding-right: clamp(30px,6vw,90px)
}
.about-intro .intro{
	line-height: 1.7;
	padding-top: clamp(10px,1.3vw,30px);
	color: #7C868E;
	text-align: justify
}
.morebar{
	display: inline-block;
	border: 1px solid #CCCCCC;
	padding: 10px 46px 10px 30px;
	font-size: clamp(12px,0.9vw,14px);
	position: relative;
	z-index: 10;
	margin-top: clamp(20px,3vw,60px);
	transition: all 0.15s ease-out;
}
.morebar::after{
	content: '';
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	width: 7px;
	height: 7px;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 26px;
	z-index: 10;
	margin-top: -3px;
}
.morebar::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 5px;
	background: #0E6DB0;
	transition: all 0.15s ease-out;
	z-index: -1;
}
.morebar:hover{
	color: #fff;
}
.morebar:hover::after{
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
.morebar:hover::before{
	width: 100%;
}
.home-title-group .morebar{
	margin-top: 0
}
.tabs-scroll{
	width: 100%;
	overflow-x: auto;
	padding-bottom: 8px;
}
.product-tabs{
	justify-content: space-between;
	border-bottom: 1px solid rgba(182,186,191,0.5);
	padding-top: clamp(6px,2vw,40px);
}
.product-tabs li{
	padding-right: 20px;
}
.product-tabs li:last-child{
	padding-right: 0;
}
.product-tabs li a{
	font-size: clamp(14px,1vw,18px);
	font-family: "OPPOSansMedium";
	cursor: pointer;
	white-space: nowrap;
	padding: 12px 0;
	display: block;
	position: relative;
}
.product-tabs li a::after{
	content: '';
	height: 1px;
	background: #0E6DB0;
	width: 100%;
	position: absolute;
	bottom: -1px;
	left: 0;
	transform: scale(1,0);
	transition: all 0.2s ease-out;
}
.product-tabs .active a{
	color: #0E6DB0
}
.product-tabs .active a::after{
	content: '';
	height: 1px;
	background: #0E6DB0;
	width: 100%;
	position: absolute;
	bottom: -1px;
	left: 0;
	transform: scale(1,1)
}
.product-show{
	display: none;
	min-height: clamp(300px,29vw,424px);
	padding-top: clamp(10px,3vw,60px);
	padding-bottom: clamp(30px,5.2vw,100px);
}
.product-list{
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}
.products{
	width: 25%;
	box-sizing: border-box;
	padding: 10px;
}
.product{
	display: block;
	min-height: clamp(240px,21vw,400px);
	border-radius: 10px;
	padding: clamp(15px,2vw,40px);
	position: relative;
	z-index: 10;
	transition: all 0.2s ease-out;
}
.product::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	background: #FFFFFF;
	border-radius: 10px;
}
.product .type{
	color: #7C868E;
	border-bottom: 1px solid #E8EDF1;
	padding-bottom: 12px;
	margin-bottom: 12px;
	transition: all 0.2s ease-out;
}
.product .name{
	font-size: clamp(14px,1.1vw,20px);
	font-family: "OPPOSansBold";
	transition: all 0.2s ease-out;
	height: 3.2em;
	line-height: 1.6em;
	overflow: hidden;
}
.product .name p{
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.product-poster{
	position: absolute;
    bottom: clamp(10px,1.3vw,20px);
    right: clamp(10px,1.3vw,20px);
    width: 60%;
    line-height: 0;
    font-size: 0;
    transition: all 0.2s ease-out;
    max-height: clamp(60px,5vw,120px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.product-poster img{
	max-height: 100%;
	max-width: 100%;
}
.product::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: 10px;
	background: linear-gradient( #0578C9, #1294F0);
	opacity: 0;
	transition: all 0.2s ease-out;
}
.products:hover .product .type{
	color: rgba(255,255,255,0.6);
	border-bottom: 1px solid rgba(255,255,255,0.2);
}
.products:hover .product .name{
	color: #fff
}
.products:hover .product::before{
	opacity: 1;
}

.product .desc{
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
	margin-top: 8px;
}
.products:hover  .desc{
	color: #fff
}
.arrow{
	background: url(../images/arrow.png) no-repeat center;
	background-size: 14px auto;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid #fff;
	position: absolute;
	left: clamp(10px,1.5vw,30px);
	bottom: clamp(30px,4.1vw,80px);
	transition: all 0.2s ease-out;
}
.products:hover .arrow{
	left: clamp(15px,2vw,40px);
}
.products:hover .product-poster{
	width: 72%;
}
.cases-tabs{
	padding-top: clamp(15px,2.6vw,50px);
	padding-bottom: clamp(15px,2.6vw,50px);
	position: relative;
	z-index: 10;
}
.bordertop{
	border-top: 1px solid rgba(182,186,191,0.5);
	margin-top: clamp(10px,1.5vw,30px);
}
.cases-tabs li{
	padding-right: 12px;
}
.cases-tabs li a{
	display: block;
	border: 1px solid rgba(0,0,0,0.6);
	border-radius: 30px;
	padding: 10px 20px;
	font-size: clamp(12px,0.9vw,16px);
	font-family: "OPPOSansMedium";
	cursor: pointer;
	white-space: nowrap;
	text-transform: capitalize;
}
.cases-tabs .active a{
	background: linear-gradient(to left,#0578C9, #1294F0);
	color: #fff;
	border: 1px solid #0578C9;
}
.cases-show{
	display: none;
}
.cases-swiper{
	position: relative;
	margin-bottom: clamp(30px,5.7vw,110px);
}
.cases-swiper .swiper-slide{
	opacity: 0.1;
	width: 1440px;
	transition: all 0.5s ease-out;
	padding: 0 12px;
}
.cases-swiper .swiper-slide-active{
	opacity: 1 !important
}
.case-pagination{
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 100%;
	padding-bottom: clamp(24px,2.6vw,50px);
	z-index: 0;
}
.case-pagination .swiper-pagination{
	text-align: right;
	color: #000000;
	font-size: clamp(16px,1.1vw,20px);
}
.case-pagination .swiper-pagination .swiper-pagination-current{
	color: #0E6DB0;
	font-size: clamp(24px,1.8vw,36px);
	font-family: "OPPOSansBold";
}
.cases-slide{
	position: relative;
}
.cases-slide .intro{
	position: absolute;
	bottom: clamp(10px,3vw,60px);
	left: clamp(10px,3vw,60px);
	padding-left: 40px;
	color: #fff;
	width: 45%;
	box-sizing: content-box;
	opacity: 0;
}
.cases-slide .intro h3{
	font-size: clamp(16px,1.45vw,28px);
	padding-bottom: clamp(10px,1vw,20px);
	font-family: "OPPOSansMedium";
}
.cases-swiper .swiper-slide-active .cases-slide .intro{
	opacity: 1;
}
.cases-swiper .swiper-button-next{
	background: url(../images/arrow_blue.png) no-repeat center;
	background-size: auto 14px;
	filter: grayscale(100%);
	border: 1px solid #0E6DB0;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	right: clamp(20px,6.14vw,118px);
	opacity: 0.8;
}
.cases-swiper .swiper-button-next:hover{
	filter: grayscale(0%);
}
.cases-swiper .swiper-button-prev{
	background: url(../images/arrow_blue.png) no-repeat center;
	background-size: auto 14px;
	filter: grayscale(100%);
	border: 1px solid #0E6DB0;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	transform: rotate(180deg);
	left: clamp(20px,6.14vw,118px);
	opacity: 0.8;

}
.cases-swiper .swiper-button-prev:hover{
	filter: grayscale(0%);
}

.cases-swiper .swiper-button-next:after,.cases-swiper .swiper-button-prev:after{
	display: none;
}
.f-box{
	padding: clamp(20px,3vw,60px) 0 clamp(10px,1.8vw,36px) 0;
	color: rgba(255, 255, 255, 0.5);
	align-items: flex-start
}
.copyright{
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
	border-top: 1px solid rgba(255,255,255,0.2);
	padding: 12px 0;
}
.copyright a{
	color: rgba(255, 255, 255, 0.5);
	transition: all 0.15s ease-out;
}
.copyright a:hover{
	color: rgba(255, 255, 255, 1);
}
.f-nav{
	align-items: flex-start;
}
.f-nav li{
	padding-left: clamp(20px,4vw,78px)
}
.f-nav li h3{
	border-bottom: 1px solid rgba(255,255,255,0.1);
	padding-bottom: clamp(10px,0.9vw,16px);
	margin-bottom: clamp(10px,1vw,20px);
	font-size: clamp(14px,1vw,16px)
}
.f-nav li h3 a{
	font-family: "OPPOSansMedium";
	color: rgba(255, 255, 255, 1);
}
.f-nav li a{
	color: rgba(255, 255, 255, 0.5);
	display: block;
	padding: 6px 0;
	transition: all 0.15s ease-out;
}
.f-nav li a:hover{
	color: rgba(255, 255, 255, 1);
}
.f-left h3{
	font-size: clamp(14px,1vw,16px);
	font-family: "OPPOSansMedium";
	color: rgba(255, 255, 255, 1);
	padding-top: clamp(12px,2vw,36px)
}
.f-left p{
	padding-top: clamp(12px,1.2vw,20px)
}
.cban{
	height: clamp(180px,24.47vw,470px);
}
.cban-tips{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	height: clamp(180px,24.47vw,470px);
	font-family: "OPPOSansBold";
	color: #fff;
	text-transform: uppercase
}
.cban-tips h3{
	font-size: clamp(16px,1.9vw,38px);
}
.cban-tips .arrow-down{
	background: url(../images/arrow.png) no-repeat center;
	background-size: clamp(14px,1.1vw,20px) auto;
	border: 1px solid #fff;
	border-radius: 50%;
	width: clamp(26px,3.3vw,48px);
	height: clamp(26px,3.3vw,48px);
	transform: rotate(90deg);
	margin-top: clamp(20px,2vw,40px);
}
.c-title{
	text-align: center;
	font-size: clamp(18px,1.66vw,32px);
	color: #000;
	font-family: "OPPOSansBold";
	text-transform: uppercase;
	padding-top: clamp(30px,5.2vw,100px);
	padding-bottom: clamp(15px,2.6vw,50px);
	letter-spacing: -1px;
}
.profile{
	font-size: clamp(12px,0.9vw,16px);
	line-height: 2;
	text-align: justify;
}
.profile-img{
	max-height: clamp(520px,35vw,680px);
	border-bottom-left-radius: clamp(12px,2vw,40px);
	border-top-right-radius: clamp(12px,2vw,40px);
	overflow: hidden;
	margin-top: clamp(15px,3.1vw,60px);
	margin-bottom: clamp(30px,6.77vw,130px);
}
.profile-img img{
	width: 100%;
}
.honor-swiper{
	padding-bottom: clamp(60px,7.5vw,140px);
	padding-top: clamp(15px,3.1vw,60px);
}
.honor-swiper .swiper-slide{
	padding: 16px;
}
.honor-swiper .swiper-pagination{
	bottom: clamp(15px,3.1vw,60px);
}
.honor-img{
	box-shadow: 0px 3px 15px 1px rgba(146,159,184,0.15);
}
.honor-img img{
	width: 100%;
	display: block;
}
.list-style{
	flex-wrap: wrap;
	margin-left: -1vw;
	margin-right: -1vw;
	padding-top: clamp(20px,5.2vw,100px);
	padding-bottom: clamp(30px,6.2vw,120px);
}
.list-style li{
	width: 33.333%;
	box-sizing: border-box;
	padding: 1vw;
}
.list-style .list{
	display: block;
	background: #fff;
	border-radius: 10px;
}
.list-style .list .poster{
	height: clamp(200px,17.91vw,258px);
	display: flex;
	align-items: center;
	justify-content: center;
}
.list-style .list .poster:hover img{
	transform: scale(1.03)
}
.list-style .list .infos{
	padding: clamp(10px,1.1vw,20px) clamp(15px,1.8vw,35px);
}
.list-style .list .infos .title{
	font-size: clamp(16px,1.2vw,22px);
	color: #000;
	font-family: "OPPOSansBold";
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	display: block;
}
.list-style .list .infos .desc{
	line-height: 22px;
	height: 66px;
	word-wrap:break-word;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
	color: #666E80;
	font-size: clamp(12px,0.9vw,16px);
	margin-top: clamp(16px,1.2vw,22px);
	text-align: justify;
}
.list-style .list .infos .thumbs{
	margin-top: clamp(16px,1.2vw,22px);
	height: 160px;
	overflow: hidden;
	margin-bottom: clamp(16px,1.2vw,22px);
}
.list-style .list .infos .thumbs .thumb{
	background: url(../images/icon1.png) no-repeat 0 6px;
	padding-left: 20px;
	margin-bottom: 12px;
	font-size: 14px;
	line-height: 20px;
	font-family: "OPPOSansMedium";
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	transition: all 0.15s ease-out
}
.list-style .list .infos .thumbs .thumb:hover{
	background: url(../images/icon1_blue.png) no-repeat 0 6px;
}
.list-style .list .infos .thumbs .thumb a{
	display: block;
	transition: all 0.2s ease-out
}
.list-style .list .infos .thumbs .thumb a:hover{
	color: #0E6DB0;
	transform: translateX(-2px)
}
.list-style .view-more{
	text-align: right;
	padding-top:clamp(10px,0.9vw,16px);
}
.list-style .view-more a{
	display: inline-block;
	font-size: clamp(12px,0.9vw,16px);
	color: #252525;
	background: url(../images/arrow2.png) no-repeat right;
	padding-right: 32px;
	filter: brightness(10%);
	transition: all 0.2s ease-out;
}
.list-style .view-more a:hover{
	color: #0E6DB0;
	filter: brightness(100%);
	padding-right: 28px;
}
.list-style .introduce{
	margin-top:clamp(16px,1.2vw,22px);
	height: 240px;
	overflow: hidden;
	margin-bottom: clamp(16px,1.2vw,22px);
}
.list-style .introduce .features{
	position: relative;
	padding-left: 16px;
	margin-bottom: 20px;
	color: #666E80;
	line-height: 20px;
}
.list-style .introduce .features::before{
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #666E80;
	position: absolute;
	top: 10px;
	left: 0;
}
.product-detail{
	padding: clamp(30px,4vw,80px) 0;
	align-items: flex-start
}
.product-detail .picture{
	width: 35%;
	flex-shrink: 0;
	background: #fff;
	height: clamp(280px,22vw,434px);
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-detail .infos{
	flex: 1;
	box-sizing: border-box;
	padding-left: clamp(30px,3vw,60px)
}
.product-detail .infos .introduce{
	margin-top:clamp(16px,1.2vw,22px);
	margin-bottom: clamp(16px,1.2vw,22px);
}
.product-detail .infos .introduce .features{
	position: relative;
	padding-left: 16px;
	margin-bottom: 20px;
	color: #000000;
	line-height: 20px;
}
.product-detail .infos .introduce .features::before{
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #1490E8;
	position: absolute;
	top: 10px;
	left: 0;
	z-index: 1;
}
.product-detail .infos .introduce .features::after{
	content: '';
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(20,144,232,0.2);
	position: absolute;
	top: 8px;
	left: -2px;
	z-index: 0;
}
.product-detail .infos .subtitle{
	color: #0E6DB0;
	font-size: clamp(14px,1.2vw,20px);
	font-family: "OPPOSansBold";
	margin-top:clamp(16px,1.2vw,22px);
}
.product-detail .infos .title{
	font-size: clamp(20px,1.6vw,32px);
	color: #252525;
	font-family: "OPPOSansBold";
}
.product-detail .infos .desc{
	color: #666E80;
	margin-top:clamp(16px,1.2vw,22px);
}
.bar-download{
	display: inline-block;
	border: 1px solid #0E6DB0;
	padding: 10px 20px;
	color: #0E6DB0;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s ease-out;
	margin-top:clamp(16px,1.2vw,22px);
	font-family: "OPPOSansMedium";
}
.bar-download:hover{
	background: #0E6DB0;
	color: #fff;
}
.overview{
	color: #333;
}
.overview .detail{
	line-height: 1.8
}
.overview .introduce{
	margin-top:clamp(16px,1.2vw,22px);
	margin-bottom: clamp(16px,1.2vw,22px);
}
.overview .introduce .features{
	position: relative;
	padding-left: 16px;
	margin-bottom: 20px;
	color: #000000;
	line-height: 20px;
}
.overview .introduce .features::before{
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #666666;
	position: absolute;
	top: 10px;
	left: 0;
}
.overview .subtitle{
	color: #0E6DB0;
	font-size: clamp(14px,1.2vw,20px);
	font-family: "OPPOSansBold";
	margin-top:clamp(30px,4vw,80px);
}
.content{
	padding-bottom: clamp(30px,6.2vw,120px);
}
.content .detail{
	line-height: 2.4
}
.content .detail p{
	padding-bottom: 1em;
}
.cases-list{
	padding-top: clamp(20px,2.9vw,56px);
	padding-bottom: clamp(30px,6.2vw,120px);
}
.cases{
	background: #fff;
	margin-top: clamp(20px,2.9vw,56px);
}
.cases-list .cases:nth-child(2n){
	flex-direction: row-reverse;
}
.cases .img{
	width: 50%;
}
.cases .infos{
	width: 50%;
	box-sizing: border-box;
	padding: 0 clamp(15px,3.1vw,60px)
}
.cases .infos h3{
	font-size: clamp(16px,1.45vw,28px);
	font-family: "OPPOSansBold";
}
.cases .infos .desc{
	color: #666E80;
	line-height: 28px;
	height: 140px;
	overflow: hidden;
	margin-top: clamp(15px,2vw,40px);
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}
.cases .img:hover .poster img{
	transform: scale(1.03)
}
.cases-sublist{
	flex-wrap: wrap;
	align-items: stretch;
	margin-left: -20px;
	margin-right: -20px;
	padding-bottom: clamp(30px,6.2vw,120px);
}
.cases-sublist li{
	width: 50%;
	box-sizing: border-box;
	padding: 20px;
}
.cases-sublist .sub-cases{
	display: block;
	position: relative;
}
.sub-cases .infos{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	z-index: 10;
	color: #fff;
	background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.5));
	padding: clamp(15px,1.3vw,30px);
}
.sub-cases .infos h3{
	font-size: clamp(14px,1.2vw,20px);
	font-family: "OPPOSansBold";
}
.sub-cases .infos .desc{
	height: 0;
	transition: all 0.4s ease-out;
	overflow: hidden;
	line-height: 24px;
}
.sub-cases:hover .infos .desc{
	margin-top: clamp(10px,1.2vw,20px);
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
	overflow: hidden;
	height: 72px;
}
.cases-requirement{
	padding-top: clamp(20px,3.1vw,60px);
	padding-bottom: clamp(30px,3.75vw,72px);
}
.cases-requirement .img{
	width: 51%;
	flex-shrink: 0;
}
.cases-requirement .infos{
	flex: 1;
	box-sizing: border-box;
	padding-right: clamp(30px,4.6vw,90px);
	color: #333;
	line-height: 1.9;
	text-align: justify;
}
.c-subtitle{
	font-size: clamp(18px,1.5vw,24px);
	color: #000;
	font-family: "OPPOSansBold";
	padding-bottom: clamp(10px,1.5vw,24px);
}
.solution-intro{
	padding-top: clamp(30px,5.2vw,100px);
	padding-bottom: clamp(40px,5.7vw,110px);
	line-height: 1.9;
	text-align: justify;
}
.related-box{
	padding-bottom: clamp(15px,6.2vw,120px);
	padding-top: clamp(15px,5.2vw,100px);
}
.related-products{
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	padding-top: clamp(10px,1.8vw,36px);
}
.related-products li{
	width: 25%;
	box-sizing: border-box;
	padding: 10px;
}
.related-products li a{
	display: block;
	background: #FAFBFC;
	text-align: center;
	padding: 15px;
	transition: all 0.2s ease-out;
	border-radius: 12px;
}
.related-products li .name{
	font-size: clamp(14px,1vw,18px);
	font-family: "OPPOSansBold";
	transition: all 0.2s ease-out;
}
.related-products li .poster{
	height: clamp(100px,8.75vw,168px);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: clamp(14px,1vw,18px);
}
.related-products li .poster img{
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	transition: all 0.2s ease-out 0.1s;
}
.related-products li .desc{
	margin-top: clamp(14px,1vw,18px);
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	color: #666E80;
	transition: all 0.2s ease-out;
}
.related-products li a:hover {
	background: linear-gradient( #0578C9, #1294F0);
}
.related-products li a:hover .name,.related-products li a:hover .desc{
	color: #fff;
}
.related-products li a:hover .poster img{
	transform: scale(1.05);
}
.support-search{
	background: #FFFFFF;
	box-shadow: 0px 4px 17px 1px rgba(102,109,121,0.08);
	border-radius: 10px;
	margin-top: -4vw;
	padding: 2.6vw;
	margin-left: 60px;
	margin-right: 60px;
}
.support-search .search{
	border: 1px solid #E9E9E9;
	border-radius: 6px;
	padding: 15px;
	position: relative;
}
.support-search .search input{
	width: 100%;
	border: none;
	outline: none;
	box-sizing: border-box;
	padding-left: 30px;
}
.support-search .search .iss{
	position: absolute;
	left: 15px;
	top: 50%;
	z-index: 1
}
.support-title{
	font-size: clamp(18px,1.66vw,32px);
	font-family: "OPPOSansBold";
	text-align: center;
	color: #000000;
	padding-top: clamp(20px,4.16vw,80px);
	padding-bottom: clamp(10px,2vw,40px)
}
.support-form{
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: clamp(10px,2vw,40px);
}
.support-form li{
	display: flex;
	align-items: center;
	padding: 0 15px
}
.support-form li label{
	white-space: nowrap;
	padding: 0 15px;
	color: #000;
	font-family: "OPPOSansMedium";
}
.support-form li .form-control{
	width: 300px;
	height: 50px;
	padding: 0 15px;
	line-height: 50px;
}
.download-list{
	padding-left: 80px;
	padding-right: 80px;
	padding-bottom: clamp(15px,6.2vw,120px);
}
.download-list li{
	border: 1px solid #E9E9E9;
	display: flex;
	align-items: center;
	padding: clamp(6px,1.35vw,26px) clamp(10px,2.3vw,46px);
	margin-bottom: 20px;
}
.download-list li .bar-download{
	margin-top: 0;
}
.download-list li .title{
	flex: 1;
	padding-right: 30px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	font-family: "OPPOSansMedium";
	font-size: 14px;
}
.download-show{
	display: none;
}
.download-tabs{
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: clamp(15px,2.6vw,50px);
}
.download-tabs li{
	padding: 0 clamp(6px,1.35vw,26px);
}
.download-tabs li a{
	font-family: "OPPOSansBold";
	font-size: clamp(14px,0.9vw,18px);
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid #fff;
	cursor: pointer;
}
.download-tabs .active a{
	border-bottom: 1px solid #0E6DB0;
	color: #0E6DB0
}
.bt-title{
	font-size: clamp(14px,2vw,32px);
	color: #000000;
	font-family: "OPPOSansMedium";
	text-align: center;
	padding-top: clamp(15px,6.2vw,120px);
	padding-bottom: clamp(20px,3.1vw,60px);
}
.support-contact{
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: clamp(15px,6.2vw,120px);
}
.support-contact li{
	padding: 0 clamp(20px,3.1vw,60px);
}
.support-contact li .infos{
	width: clamp(300px,32vw,600px);
	height: clamp(60px,9vw,180px);
	background: rgba(255,255,255,0.5);
	border: 2px solid #FFFFFF;
	border-radius: 10px;
	padding: clamp(15px,3.1vw,60px) clamp(30px,3.1vw,60px);
	display: flex;
	align-items: center;
}
.support-contact li .infos .intro{
	flex: 1;
	box-sizing: border-box;
	padding-left: clamp(20px,3.1vw,60px);
	font-family: "OPPOSansMedium";
}
.support-contact li .infos .intro h3{
	font-family: "OPPOSansBold";
	font-size: clamp(14px,1.3vw,26px);
	margin-bottom: 10px;
}
.contact-box{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: clamp(30px,4.6vw,90px) 0;
}
.contact-left{
	flex: 1;
	box-sizing: border-box;
	padding-right: clamp(30px,5.2vw,100px)
}
.contact-right{
	width: 50%;
}
.contact-box .support-contact{
	flex-direction: column;
	width: 100%;
	margin: 0;
}
.contact-box .support-contact li{
	padding-bottom: clamp(15px,2.1vw,40px);
	padding-left: 0;
}
.contact-left .c-title{
	text-align: left !important;
}
.contact-right .c-title{
	text-align: left !important;
}
.form-message{
	background: #fff;
	padding: clamp(10px,1.3vw,30px);
}
.form-inbox{
	border-bottom: 1px solid #f1f1f1;
}
.form-inbox input{
	border: none;
	width: 100%;
	outline: none;
	padding: 10px 0;
	font-size: 14px;
}
.form-message{
	display: flex;
	flex-wrap: wrap;
}
.form-message li{
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
}
.form-message li h4{
	font-size: clamp(14px,1vw,18px);
	font-family: "OPPOSansBold";
}
.form-message .wd4{
	width: 40%;
}
.form-message .wd5{
	width: 50%;
	box-sizing: border-box;
	padding-left: 10%;
}
.send-bar{
	width: 150px;
	height: 48px;
	line-height: 46px;
	color: #fff;
	background: #0E6DB0;
	border: none;
	margin-top: clamp(20px,2vw,48px);
}
.empty-box{
	padding: clamp(30px,4vw,100px) 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.empty-box img{
	max-width: 60%;
}
.empty-box .description{
	font-size: clamp(12px,1.1vw,20px);
	font-family: "OPPOSansMedium";
	padding:  clamp(14px,1.1vw,20px) 0;
	color: #000;
	transform: translateY(-40px)
}
.rearch-result{
	padding: 12px 0;
	border-bottom: 1px solid #0E6DB0;
	font-size: clamp(12px,0.9vw,16px);
}
.rearch-list{
	padding-bottom: clamp(30px,5.2vw,100px);
}
.rearch-list li{
	padding: 10px 0;
	border-bottom: 1px solid #E2E2E2;
}
.rearch-list li a{
	display: block;
	padding: 10px 0;
	font-family: "OPPOSansMedium";
}

.crum{
	display: flex;
	align-items: center;
	padding: clamp(10px, 2vw,30px) 0;
}
.crum li{
	padding-right: 16px;
	margin-right: 16px;
	position: relative;
}
.crum li::after{
	content: '';
	border-top: 1px solid #313131;
	border-right: 1px solid #313131;
	width: 8px;
	height: 8px;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -4px;
}
.crum li:last-child::after{
	display: none;
}

.ihome{
	display: block;
	background: url(../images/home.png) no-repeat;
	background-size: cover;
	width: clamp(14px,1.2vw,18px);
	height: clamp(14px,1.2vw,18px);
	flex-shrink: 0;
}
.download-box .download-list{
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 1860px){
	.container {
		padding-left: 10%;
		padding-right: 10%;
	}
}
@media (max-width: 1440px) {
/*
	.container{
		width: 100%;
		padding-left: 30px;
		padding-right: 30px;
		box-sizing: border-box;
	}
*/
	.cases-swiper .swiper-slide{
		width: 100%
	}
	.cases-swiper .swiper-button-next{
		right: 30px;
		width: 46px;
		height: 46px;
		background-size: 16px auto;
	}
	.cases-swiper .swiper-button-prev{
		left: 30px;
		width: 46px;
		height: 46px;
		background-size: 16px auto;
	}
}

@media (max-width: 1280px) {
	.banner-info{
		padding-top: 11vw;
		width: 23vw;
	}
	.banner-info .more{
		margin-top: 20px;
	}
	.banner-tit{
		width: 70%;
	}
	.banner-intro{
		margin-top: 20px;
		padding-top: 20px;
	}
}
@media (max-width: 1024px) {
	.container{
		padding-left: 15px;
		padding-right: 15px;
	}
	.brand-logo{
		height: 32px;
		width: 100px;
	}
	.top-search{
		width: 40px;
	}
	.ssbar{
		width: 6px;
	}
}

@media (max-width: 480px) {
	.container{
		width: 100%;
		box-sizing: border-box;
		padding-left: 15px;
		padding-right: 15px;
	}
	.header-container{
		height: 52px;
	}
	.brand-logo {
		background: url(../images/brand_logo.png) no-repeat;
		background-size: contain;
		height: 32px;
	}
	.nav-tools{
		display: none
	}
	.nav-header{
		position: fixed;
		z-index: 1000;
		padding: 10px 0;
		background: #ffffff !important;
	}
	.nav-hbg .nav-header{
		background: #ffffff !important;
	}
	.navMenu{
		display: none;
		position: fixed;
		top: 52px;
		left: 0;
		width: 100%;
		background: #fff;
		box-sizing: border-box;
		padding: 10px 15px;
	}
	.navMenu li{
		margin: 0 !important
	}
	.navMenu li a{
		color: #1a1a1a;
	}
	.mob-navbtn{
		display: block;
		margin-top: 6px;
	}
	.navbtn {
		/*background: rgba(8,26,65,0.5);*/
		width: 32px;
		height: 24px;
		border: none;
		box-sizing: border-box;
		position: relative;
		z-index: 10000;
	}
	.navbtn i {
		position: absolute;
		top: 0;
		left: 4px;
		display: block;
		height: 2px;
		width: 24px;
		background: #1a1a1a;
		border-radius: 2px;
		margin-bottom: 5px;
		transition: all 0.3s ease-in-out;
	}
	.navbtn i:nth-child(2n) {
		top: 8px;
		width: 20px
	}
	.navbtn i:nth-child(3n) {
		top: 16px;
		width: 12px
	}
	.navbtn.cur i {
		width: 24px;
		background: #1a1a1a;
	}
	.navbtn.cur i:nth-child(1) {
		top: 8px;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.navbtn.cur i:nth-child(2) {
		opacity: 0;
	}
	.navbtn.cur i:nth-child(3) {
		top: 8px;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.mob-navbar-nav {
		position: fixed;
		top: 52px;
		left: 0;
		width: 100%;
		z-index: 1001;
		background: #fff;
		box-sizing: border-box;
		border-top: 1px solid rgba(0,0,0,0.1);
	}
	.mob-cover{
		display: none;
		background: rgba(0,0,0,0.9);
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 999;
	}
	.mob-navbar-nav ul li {
		position: relative;
	}
	.mob-navbar-nav ul li::before{
		content: '';
		border-bottom: 1px solid rgba(0,0,0,0.1);
		position: absolute;
		bottom: 0;
		left: 15px;
		right: 15px;
	}
	.mob-navbar-nav ul li:last-child::before{
		display: none
	}
	.mob-navbar-nav ul li::after{
		content: '';
		position: absolute;
		top: 50%;
		right: 20px;
		border-top: 1px solid rgba(255,255,255,0.5);
		border-right: 1px solid rgba(255,255,255,0.5);
		width: 6px;
		height: 6px;
		transform: rotate(45deg);
		margin-top: -4px;
	}
	.mob-navbar-nav ul li h3{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.mob-navbar-nav ul li h3 a {
		display: block;
		flex: 1;
		padding: 12px 15px;
		color: #1a1a1a;
		font-size: 14px;
		font-family: "OPPOSansMedium";
	}
	.mob-sub{
		display: none;
		padding: 0 30px;
	}
	.mob-sub a{
		font-size: 12px;
		display: block;
		padding: 5px 0;
	}
	.bat{
		width: 12px;
		height: 20px;
		position: relative;
		margin-left: 12px;
	}
	.bat::after{
		content: '';
		border-top: 6px solid #fff;
		border-left: 6px solid rgba(0,0,0,0);
		border-right: 6px solid rgba(0,0,0,0);
		position: absolute;
		top: 8px;
		right: 0px;
		z-index: 1;
		border-radius: 4px;
	}
	.bat{
		width: 50px;
		height: 36px;
		position: relative;
		display: inline-block;
		margin-left: 8px;
	}
	.bat::after{
		border-top: none;
		border-left: none;
		border-bottom: 1px solid #666;
		border-right: 1px solid #666;
		width: 9px;
		height: 9px;
		border-radius: 0;
		transform: rotate(45deg);
		position: absolute;
		top: 50%;
		right: 20px;
		margin-top: -6px;
		transition: all 0.3s ease-out;
	}
	.cur.bat::after{
		transform: rotate(-135deg);
	}
	.banner-tips{
		line-height: 1.5
	}
	.banner-swiper{
		height: 40vh
	}
	.banner-num{
		font-size: 14px !important;
	}
	.banner-num strong{
		font-size: 20px !important
	}
	.home-about{
		flex-direction: column-reverse;
	}
	.about-intro{
		width: 100%;
		padding-right: 0;
	}
	.morebar{
		padding: 3px 16px 3px 10px;
		border-radius: 2px;
	}
	.morebar::after{
		right: 10px;
	}
	.product-tabs li{
		padding-right: 20px;
	}
	.products{
		width: 50%;
	}
	.product .type{
		font-size: 12px;
	}
	.bordertop{
		border-top: none;
		margin-top: 0;
	}
	.cases-tabs li a{
		padding: 5px 15px;
	}
	.cases-swiper .swiper-button-next{
		width: 30px;
		height: 30px;
		background-size: 14px auto;
		right: 10px;
		border: none;
	}
	.cases-swiper .swiper-button-prev{
		width: 30px;
		height: 30px;
		background-size: 14px auto;
		left: 10px;
		border: none;
	}
	.cases-slide .intro{
		width: 100%;
		padding: 10px;
	}
	.cases-slide .intro .desc{
		display: none;
	}
	.cases-slide .intro h3{
		padding-bottom: 0;
	}
	.f-box{
		flex-direction: column;
	}
	.f-right{
		width: 100%;
		display: none;
	}
	.f-nav{
		margin-left: -8px;
		margin-right: -8px;
		flex-direction: column;
	}
	.f-nav li{
		padding: 0 8px;
		width: 100%;
	}
	.flogo{
		height: 32px;
	}
	.profile{
		text-align: left
	}
	.list-style{
		margin-left: -8px;
		margin-right: -8px
	}
	.list-style li{
		width: 100%;
		padding: 8px;
	}
	.list-style .list .infos{
		padding: 15px;
	}
	.product-detail{
		flex-direction: column;
	}
	.product-detail .picture{
		width: 100%;
	}
	.product-detail .infos{
		padding-left: 0;
		padding-top: 15px;
	}
	.cases{
		flex-direction: column;
	}
	.cases-list .cases:nth-child(2n){
		flex-direction: column;
	}
	.cases .img{
		width: 100%;
	}
	.cases .infos{
		width: 100%;
		padding: 15px;
	}
	.cases-sublist{
		margin-left: 0;
		margin-right: 0;
	}
	.cases-sublist li{
		width: 100%;
		padding: 8px 0;
	}
	.sub-cases .infos .desc{
		height: 60px;
		line-height: 20px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
		margin-top: 6px;
	}
	.related-products li{
		width: 100%;
		padding: 8px 0;
	}
	.support-search{
		margin-left: 0;
		margin-right: 0;
		margin-top: 10px;
	}
	.support-form{
		flex-direction: column
	}
	.support-form li{
		flex-direction: column;
		align-items: flex-start;
	}
	.support-form li label{
		padding: 8px 0;
	}
	.support-form li .form-control{
		height: 42px;
		padding: 0px 8px;
		line-height: 42px;
	}
	.download-list{
		padding-left: 0;
		padding-right: 0;
	}
	.download-list li{
		flex-direction: column;
		align-items: flex-start;
	}
	.download-list li .title{
		white-space: normal;
		margin-bottom: 8px;
	}
	.download-list li .bar-download{
		padding: 3px 6px;
		font-size: 12px;
		border-radius: 4px;
		align-self: flex-end;
		transform: translateY(-6px)
	}
	.support-contact{
		flex-direction: column;
	}
	.support-contact li{
		width: 100%;
		padding: 10px 0;
	}
	.support-contact li .infos{
		width: 100%;
		height: auto;
	}
	.support-contact li .infos img{
		height: 32px;
	}
	.support-contact li .infos .intro h3{
		margin-bottom: 6px
	}
	.contact-box{
		flex-direction: column
	}
	.contact-left{
		width: 100%
	}
	.contact-box .support-contact{
		padding-bottom: 0;
	}
	.contact-left .support-contact li .infos{
		width: 100%;
	}
	.contact-right{
		width: 100%
	}
	.rearch-list li{
		padding: 5px 0;
	}
	.rearch-list li a{
		padding: 5px 0;
	}
}
