header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  transition: all 0.5s;
  width: 100%;
  padding: 25px 0;
  z-index: 999999;
}

header .myContainer {
  margin: auto;
  padding: 0 20px;
  max-width: 1760px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  width: 278px;
  height: auto;
  cursor: pointer;
}

header .lang {
  position: relative;
}

header .lang .current {
  font-size: 24px;
  font-family: OPPOSans-M;
}

header .lang .list {
  position: absolute;
  top: 100%;
  z-index: 99;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  max-height: 0;
  height: fit-content;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

header .lang .list .li{
  padding: 5px 20px;
  font-size: 18px;
  font-family: OPPOSans-M;
  background-color: #FFF;
  transition: all 0.3s;

}
header .lang .list .li:hover{
  background-color: #333;
  color: #FFF;
}

header .lang:hover .list{
  max-height: 100vh;
}


header nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
header nav .lang{
  display: none;
}
header nav .navList {
  display: flex;
  gap: 80px;
}

header nav .navList .nav_li {
  /* font-family: OPPOSans-M; */
  font-family: 'OPPOSans-R';
  font-size: 24px;
  color: #313131;
  padding: 20px 0;
  transition: all 0.3s;
}

header nav .navList .nav_li:not(:last-child) {
  position: relative;
}

header nav .navList .nav_li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100% + 40px);
  transform: translateY(-50%);
  width: 2px;
  height: 24px;
  background-color: #c9c9c9;
}

header nav .navList .nav_li:hover {
  color: #000;
  font-weight: bold;
}

header nav .navList .hasChild {
  position: relative;
}

header nav .navList .hasChild .subNav {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s;
  position: absolute;
  top: 100%;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
}

header nav .navList .hasChild .subNav li {
  width: 100%;
  text-align: center;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

header nav .navList .hasChild .subNav li:hover {
  background-color: #d6d7d9;
}

header nav .navList .hasChild .subNav a {
  font-size: 18px;
  padding: 0;
}

header nav .navList .hasChild:hover .subNav {
  max-height: 1000px;
}

header .new {
  position: relative;
}

header .new .newing {
  font-family: OPPOSans-B;
  font-size: 24px;
  line-height: 1;
  color: #313131;
}

header .new .sub {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  text-align: right;
  font-family: OPPOSans-M;
  font-size: 18px;
  line-height: 2;
  color: #898989;
  white-space: nowrap;
  cursor: pointer;
}

header .new .sub .li {
  transition: all 0.3s;
}

header .new .sub .li:hover {
  color: #444;
}

header.active {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

main { 
  padding-bottom: 40px; 
}

.blod { 
  transition: all .3s ease-in-out; 
}

.blod:hover { 
  font-weight: bold; 
  color: #000; 
}

.pageChange {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  gap: 12px;
}

.pageChange .item a {
  background: #FFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.pageChange .item a svg {
  fill: #313131;
  transition: all 0.3s;
}

.pageChange .item a:hover {
  background-color: #0056cc;
  opacity: 0.8;
  color: #FFF;
}

.pageChange .item a:hover svg {
  fill: #FFF;
}

.pageChange .item a.active {
  background-color: #0056cc;
  color: #FFF;
  opacity: 1;
}

.pageChange .item a.active svg {
  fill: #FFF;
}

.pageChange .item.next {
  transform: rotate(180deg);
}

.pageChange.type_2 .item a {
  background-color: #f5f5f5;
}

.pageChange.type_2 .item a:hover {
  background-color: #0056cc;
  opacity: 0.8;
  color: #FFF;
}

.pageChange.type_2 .item a:hover svg {
  fill: #FFF;
}

.pageChange.type_2 .item a.active {
  background-color: #0056cc;
  color: #FFF;
  opacity: 1;
}

.pageChange.type_2 .item a.active svg {
  fill: #FFF;
}

.bannerText {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 98px;
}

.bannerText .en {
  font-family: Gilroy-Bold;
  color: #434343;
}

.bannerText .cn {
  font-family: OPPOSans-L;
  font-size: .36734em;
  color: #434343;
}

.changePage {
  display: flex;
  padding: 70px 0;
  justify-content: center;
  gap: 12px;
}

.changePage div {
  width: 40px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.changePage .change {
  transition: all 0.3s;
  cursor: pointer;
}

.changePage .change:hover {
  opacity: .5;
}

.changePage .num {
  background-color: #eee;
  cursor: pointer;
  transition: all 0.3s;
  font-family: Gilroy-Regular;
  font-size: 18px;
  line-height: 1.333;
  color: #313131;
}

.changePage .num:hover {
  background-color: #6e6e6e;
  color: #FFF;
}

.changePage .num.active {
  background-color: #434343;
  color: #FFF;
}

.changePage_2 {
  padding: 50px 0;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.changePage_2 div {
  width: 70px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid #969696;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.changePage_2 div:hover {
  border-color: #434343;
}

.title {
  text-align: center;
  font-size: 60px;
}

.title .en {
  font-family: Gilroy-Bold;
  color: #313131;
}

.title .cn {
  font-family: OPPOSans-R;
  font-size: .5em;
  color: #434343;
}

.myContainer {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

.banner {
  aspect-ratio: 16 / 9;
  background-image: url(../images/index_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top 30px;
  position: relative;
}

#index {
  width: 100%;
  height: 100vh;
  background-image: url(../images/index_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top 30px;
  position: relative;
}

#index .content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30vh;
  max-width: 750px;
  width: 90.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#index .content .pTitle {
  position: relative; 
  padding-left: 170px;
  margin: 0 auto; 
  font-family: Gilroy-Medium;
  font-size: 16px;
  line-height: 1.714;
  color: #313131;
}

#index .content .pTitle > label { 
  position: absolute; 
  top: 0; 
  left: 0; 
  display: inline-block; 
  font-family: 'Arial'; 
  font-weight: bold; 
  font-size: 48px; 
  color: #7e5e95; 
}

#index .content .pTitle > span { 
  display: inline-block; 
  font-family: 'DFKai-SB'; 
  font-size: 36px; 
  color: #002060; 
}

#index .content .pTitle > p { 
  position: absolute; 
  left: 175px; 
  bottom: -10px; 
  display: block; 
  margin: 0;
  font-size: 15px; 
  color: #002060; 
}

#index .content .pTitle > p > strong { 
  display: inline-block; 
  font-family: 'Arial Black'; 
}

#index .content .pTitle > p > span { 
  display: inline-block; 
  font-family: '楷体'; 
}

#index .content .search {
  display: flex;
  width: 100%;
  margin: 60px 0;
  height: 70px;
}

#index .content .search *::selection {
  background: none;
}

#index .content .search input {
  flex: 1;
  outline: none;
  border: 2px solid #aaa;
  border-radius: 35px 0 0 35px;
  padding-left: 35px;
  font-family: OPPOSans-M;
  font-size: 24px;
  color: #aaaaaa;
  transition: all 0.3s;
}

#index .content .search input:focus {
  border-color: #707070;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

#index .content .search .icon {
  width: 105px;
  height: 100%;
  border-radius: 0 35px 35px 0;
  background-color: #707070;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#index .content .search .icon .img {
  width: 25px;
  height: auto;
  display: block;
}

#index .content .search .icon:active {
  opacity: .8;
}

#index .content .ps .ul {
  display: flex;
  flex-direction: column;
  font-family: OPPOSans-R;
  font-size: 20px;
  line-height: 2;
  color: #313131;
}

#index .content .ps .ul .underLine {
  font-family: OPPOSans-B;
  text-decoration: underline;
  cursor: pointer;
}

#index .content .ps .ul .underLine a { 
  display: inline; 
}

#index .content .ps .ul .li {
  padding-left: 20px;
  position: relative;
}

#index .content .ps .ul .li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #434343;
}

#contact { 
  margin-top: 120px;
  font-family: 'OPPOSans-R'; 
  font-size: 15px;
  color: #313131; 
}

#contact label { 
  display: inline-block; 
}

#about {
  aspect-ratio: 192 / 108;
  width: 100%;
}

#about section {
  padding: 80px 0 40px;
}

#about .founderContent {
  display: flex;
  margin-top: 60px;
  padding: 60px 0 80px;
}

#about .founderContent .avatar {
  flex: 1;
  position: relative;
}

#about .founderContent .avatar .img {
  width: 100%;
  position: absolute;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#about .founderContent .content {
  width: 55%;
}

#about .founderContent .content .name {
  font-family: OPPOSans-B;
  font-size: 36px;
  color: #434343;
  padding-bottom: 20px;
}

#about .founderContent .content .name .describe {
  font-family: OPPOSans-R;
  font-size: .66em;
  color: #313131;
}

#about .founderContent .content .text {
  font-family: OPPOSans-R;
  font-size: 18px;
  line-height: 1.666;
  color: #434343;
}

#about .companyContent {
  background-image: url(../images/about_introduce.jpg);
  background-size: cover;
  background-position: right center;
  margin-top: 50px;
  padding: 180px;
}

#about .companyContent .pTitle {
  text-align: center;
  font-family: MicrosoftYaHei;
  font-size: 48px;
  color: #ffffff;
  position: relative;
  line-height: 1;
  width: fit-content;
  margin: auto;
}

#about .companyContent .pTitle::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 30.15%;
  background-color: #fff;
  height: 1px;
}

#about .companyContent .text {
  padding-top: 70px;
  font-family: OPPOSans-R;
  font-size: 18px;
  line-height: 1.666;
  color: #ffffff;
  max-width: 1026px;
  width: 90.5%;
  margin: auto;
}

#about .mySwiper_1 {
  overflow: hidden;
  margin-top: 98px;
  position: relative;
  --swiper-navigation-color:#333;
}

#about .swiper_1 .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 55px;
  background-color: #f5f5f5;
  border-radius: 30px;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

#about .swiper_1 .box .avatar {
  width: 51.25%;
}

#about .swiper_1 .box .avatar .img {
  aspect-ratio: 1 / 1;
  width: 205px;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

#about .swiper_1 .box .name {
  font-family: AvenirLTStd-Black;
  font-size: 24px;
  color: #434343;
  padding: 55px 0 35px;
  transition: all .3s ease-in-out;
}

#about .swiper_1 .box .text {
  font-family: OPPOSans-R;
  font-size: 18px;
  line-height: 1.333;
  color: #434343;
  transition: all .3s ease-in-out;
}

#about .swiper_1 .box:hover {
  background-color: #555;
}

#about .swiper_1 .box:hover .name {
  color: #fff;
}

#about .swiper_1 .box:hover .text {
  color: #FFF;
}

#about .swiper_1 .box.active {
  background-color: #434343;
}

#about .swiper_1 .box.active .name {
  color: #fff;
}

#about .swiper_1 .box.active .text {
  color: #FFF;
}

#country .continentList {
  display: flex;
  flex-direction: column;
  gap: 90px;
  padding: 80px 0;
}

#country .continentList .item {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

#country .continentList .item .countryTitle {
  font-family: OPPOSans-B;
  font-size: 36px;
  color: #313131;
  padding-bottom: 30px;
  border-bottom: 1px solid #c9c9c9;
}

#country .continentList .item .countryList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}

#country .continentList .item .countryList .cItem {
  width: 20%;
  font-family: OPPOSans-M;
  font-size: 18px;
  color: #313131;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

#country .continentList .item .countryList .cItem:hover {
  text-shadow: 2px 2px 3px #313131;
}

#country .continentList .item .countryList .cItem::selection {
  background-color: transparent;
}

#countryList .countryBox {
  padding-top: 80px;
}

#countryList .countryTitle {
  font-family: OPPOSans-B;
  font-size: 36px;
  color: #313131;
  text-align: center;
}

#countryList .countryContent {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#countryList .countryContent .item {
  gap: 10px;
  display: flex;
  align-items: center;
}

#countryList .countryContent .item .time {
  width: 56px;
  aspect-ratio: 1 / 1;
  background-color: #ffffff;
  border-radius: 12px;
  border: solid 1px #dcdcdc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#countryList .countryContent .item .time .day {
  font-family: Gilroy-Bold;
  font-size: 20px;
  color: #434343;
}

#countryList .countryContent .item .time .year {
  font-family: Gilroy-Medium;
  font-size: 12px;
  color: #434343;
}

#countryList .countryContent .item .text {
  font-family: OPPOSans-M;
  font-size: 18px;
  color: #434343;
}

#news {
  padding-bottom: 70px;
}

#news .newsBox {
  padding: 150px 0 120px;
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

#news .newsBox .newsTitle {
  font-family: OPPOSans-B;
  font-size: 30px;
  color: #313131;
  text-align: center;
}

#news .newsBox .newsTool {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  padding: 40px 0 50px;
}

#news .newsBox .newsTool .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: OPPOSans-R;
  font-size: 18px;
  color: #313131;
}

#news .newsBox .newsContent {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 0;
  font-family: OPPOSans-R;
  font-size: 18px;
  line-height: 1.666;
  color: #201f28;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  text-align: justify;
}

#news .newsBox .newsContent .img {
  width: 100%;
  margin: 3% 0;
  height: auto;
}

#news .newsBox .newsContent .text {
  padding: 0 15px 15px 15px;
  border-bottom: 1px solid #dcdcdc;
}

#news .newsBox .newsContent .down {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 15px;
  margin: 30px 0 15px;
  border: 1px solid #dcdcdc; 
  border-radius: 5px; 
}

#news .newsBox .newsContent .down .icon {
  display: block;
}

#news .newsBox .newsContent .down .btn-buy,
#news .newsBox .newsContent .down .btn-download {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
}

#news .newsBox .newsContent .down .down-info {
  float: right;
  line-height: inherit;
}

#news .newsBox .newsContent .paybox { 
  position: relative; 
  padding: 20px; 
  margin-bottom: 20px;
  border: 1px solid #dcdcdc; 
  border-radius: 5px; 
  display: none; 
}

#news .newsBox .newsContent .paybox .btn-close { 
  position: absolute; 
  top: 5px; 
  right: 5px; 
  line-height: 0; 
  font-size: 20px;
  color: #6e6e6e; 
  cursor: pointer; 
}

#news .newsBox .newsContent .paybox .tips { 
  margin-left: 5px; 
  padding-top: 15px; 
  font-size: 14px; 
  color: #434343; 
}

#service .serviceContent {
  padding: 70px 0;
  max-width: 980px;
  margin: auto;
  padding: 0 20px;
}

#service .serviceContent .pTitle {
  font-family: OPPOSans-B;
  font-size: 36px;
  text-align: center;
  color: #313131;
}

#service .serviceContent .serviceList {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

#service .serviceContent .serviceList .item {
  display: flex;
  flex-direction: column;
  gap: 25px;
  color: #313131;
  font-size: 18px;
}

#service .serviceContent .serviceList .item .sTitle {
  font-family: OPPOSans-H;
}

#service .serviceContent .serviceList .item .subList {
  font-family: OPPOSans-M;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#service .serviceContent .serviceList .item .subList .img {
  flex: 0;
  display: block;
}

footer .copyRight {
  font-family: OPPOSans-R;
  font-size: 18px;
  line-height: 1.333;
  color: #434343;
  padding: 60px 0;
  border-top: 1px solid #d3d3d3;
  text-align: center;
}

#msg > .page-content { 
  padding-top: 175px; 
}

.fc-pay-html .fc-price-color { 
  text-align: center; 
}

.fc-pay-html img { 
  display: block; 
  margin: 0 auto; 
}