﻿* {
  margin: 0;
  padding: 0;
}
html{
	scroll-behavior: smooth;
}
html{
	scroll-padding-top:100px; 
}

    .rapStarBack {
        color: white;
        display: inline-block;
        font-size: 32px;
        margin: auto;
        position: relative;
        cursor: pointer;
        text-shadow: 0 0 8px black;
    }

    .rapStarFront {
        top: 0px;
        color: yellow;
        display: block;
        overflow: hidden;
        position: absolute;
        z-index: 1;
        white-space: nowrap;
    }

.waves {
    position: relative;
    width: 100%;
    height: 100px;
    /*Fix for safari gap*/
    min-height: 100px;
}

/* Animation */
.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/*Shrinking for mobile*/
@media (max-width:768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }
}

/*
@font-face {
    font-family: "poppins-regular";
    src: url(../ttf/poppins-regular9zgv.ttf);
}
@font-face {
    font-family: "poppins-bold";
    src: url(https://omo-oss-file.thefastfile.com/portal-saas/pg2024081423114138103/cms/file/poppins-bold.otf);
}
*/

@keyframes rexiao
{
  0% {    transform: rotateY(0deg);}
  50% {    transform: rotateY(90deg);}
  100%{    transform: rotateY(0deg);}
}

@keyframes bannerimg
{
from {transform: scale(1.2);}
to {transform: scale(1);}
}

body {
  color: #333;
  font:14px/1.5 'poppins-regular','\5FAE\8F6F\96C5\9ED1',arial,helvetica,sans-serif;

}
input,textarea{
	font:14px/1.5 'poppins-regular','\5FAE\8F6F\96C5\9ED1',arial,helvetica,sans-serif;
}


.reset_style,body {
  word-break: break-word;
}

a {
  transition: all .3s;
  text-decoration: none;
}

a:hover{
  color: var(--mColor);
  text-decoration: none;
}

.btn-primary{
    background: var(--mColor);
    border-color: var(--mColor);
}
.bg-primary{
	background: var(--mColor);
}
.text-primary{
    color:var(--mColor)
}
.btn-outline-primary{
    color: var(--mColor);
    border-color: var(--mColor);
}
.custom-control-input:checked ~ .custom-control-label::before{
	border-color: var(--mColor);
    background-color: var(--mColor);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{
	background-color: rgba(70,153,238, 0.3);
}
div[class^="e_cookie"] .p_rIcon{
    background-color: var(--mColor) !important;
 }

.textRequire{
    position: relative;
}
span.required {
    position: absolute;
    left: 5px;
    z-index: 2;
    color: #c6232a;
    top: 10px;
}
.textRequire span.required {
	top:11px;
}


  div[class^=e_richText-] img {
    max-width: 100% !important;
    height: auto !important;
  }

  div[class^=e_richText-] video {
    max-width: 100% !important;
    height: auto !important;
  }

div[class^="e_breadcrumb"] > .p_breadcrumb{
	display:flex;
  flex-wrap:wrap !important;
}
div[class^="e_breadcrumb"] .p_breadcrumbItem{
    white-space:normal !important;
}
     .table_wrap{
      overflow-x: auto;
      overflow-y: hidden;
      padding-bottom: 10px;
    }
     .table_wrap::-webkit-scrollbar{
    height:5px;
    }
    .table_wrap::-webkit-scrollbar-thumb{
      background-color:var(--mColor);
      }
      .table_wrap::-webkit-scrollbar-track{
        background:#ccc;
      }
    .table_wrap table{min-width:400px;}

.prolist .p_loopitem div[class^=e_container-]:before{display:none !important;}
.prolist .p_loopitem div[class^=e_container-] div[class^=e_image-]:before,.prolist .p_loopitem div[class^=e_container-] div[class^=e_image-]:after,.prolist .p_loopitem div[class^=e_container-] div[class^=e_image-] a:before,.prolist .p_loopitem div[class^=e_container-] div[class^=e_image-] a:after{display:none !important;}
.prolist .p_loopitem div[class^=e_container-]:hover div[class^=e_image-] img{opacity: 1 !important;}


.subpage_ad .text {
    top: 50%;
    width: 90%;
    max-width: 1600px;
    text-align: center;
    display:none;
}
.subpage_ad:before{
    content: "";
    dislay: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    left: 0;
    top: 0;
    z-index: 1;
    position: absolute;
}
.subpage_ad .bgimg {
animation: bannerimg 2s;
}
.subpage_ad .ad-tit{
    color: #fff;
    font-size: 3vw;
    display: inline-block;
    position: relative;
    font-weight: bold;
    line-height:1;
    /* letter-spacing: 2px; */
}
.subpage_ad .ad-tit:before{
	position: absolute;
	top: 0px;
	right: -9px;
	content: '';
	width: 22px;
	height: 22px;
	border: solid 1px #fff;
	border-radius: 50%;
	opacity: 0;
}
.subpage_ad .ad-line{
  	background: var(--mColor);
  	height:5px;
  	margin: 20px auto;
  	width:80px;
}
.subpage_ad .ad-sum{
      letter-spacing: 5px;
	color:#fff !important;
  font-size: 20px !important;
}

.pl_service4 .service_icon span{
	display:none;
}
.pl_service4 .service_icon{
	display: flex;
    align-items: center;
}
.pl_service4 .service_icon .icon{
	margin:0 16px;
}
.pl_service4 .service_value a{
	color:#fff;
}
.pl_service4 > .item_con .service_item.showLang:hover{
	min-width: 265px;
}
.pl_service4 .service_group > .item_con:nth-child(1) .service_item.showLang:hover{
	min-width: 280px;
}
.pl_service4 .service_value{
  width:200px;
}


/*nav*/
.subNav {
  max-width: 1320px !important;
  display: flex;
  flex-wrap: wrap;
}

.subNav>div {
  width: auto !important;
}

.subNav:after {
  display: none !important;
}

.e_breadcrumb-1 .p_breadcrumb {
  flex-wrap: wrap;
}
.subNavList .btn-primary{
	
}
@media only screen and (min-width: 769px) {

  /*ÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â¤Ãƒâ€šÃ‚Â§ÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â±Ãƒâ€šÃ‚Â*/
  .NavList_a1 a {
    font-size: 14px !important;
    padding: 0px 20px !important;
  }
  .subpage_ad{
  	  height: 50vw;
  }
}

@media only screen and (max-width: 768px) {
  
.pl_service{
    bottom: 65px;
    right: 10px;
  }
  .pl_service .p_defaultIocn{
    color: #fff;
    background: var(--mColor);
  }
  .smartIcon{
    width: 50px;
    height: 50px;
    color: var(--mColor) !important;
    padding: 5px;
    right: 10px;
    bottom: 10px;
  }

  .subpage_ad{
  	    height: 25vh !important;
  }
.subpage_ad .ad-tit{
    font-size: 20px !important;
}
.subpage_ad .ad-tit:before{
    top: 0px;
    right: -5px;
    width: 12px;
    height: 12px;
}
  .subpage_ad .ad-line{
  	margin: 5px 0;
    width: 30px;
    height:3px;
  }
.subpage_ad .ad-sum{
      letter-spacing: 2px;
  font-size: 14px !important;
}

  
  /*ÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â°Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â±Ãƒâ€šÃ‚Â*/
  .subNav>div {
    width: 100% !important;
  }
  .pl_service{
  	bottom: 60px;
  }
  .pl_service .p_defaultIocn{

  }
}


