:root {
  --color-yellow: #F08200;
  --color-base01: #4E4F50;
  --color-base02: #5D6A70;
  --color-base03: #F5F5F5;
}

html,
body {
  font-size: 14px;
  line-height: 160% !important;
}

a {
  text-decoration: none !important;
}

a.underline:hover {
  text-decoration: underline !important;
}

a:hover {
  text-decoration: underline;
}

small {
  font-size: .8rem;
}

.pcHeader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.pcHeader .pcMenu {
  border-top: 1px solid #4E4F50;
  border-bottom: 1px solid #4E4F50;
}

.pcHeader .pcMenu>div>a {
  color: #fff;
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 1rem .5rem;
  font-weight: bold;
  transition: all .2s ease-in-out;
  border-bottom: 3px solid transparent;
  border-top: 3px solid transparent;
}

.pcHeader .pcMenu>div>a:hover {
  color: var(--color-yellow);
}

.pcHeader .pcMenu>div>a>i {
  font-size: 12px;
}

.pcHeader .pcMenu>div>a.active {
  border-bottom: 3px solid var(--color-yellow);
  color: var(--color-yellow);
}

.homeBanner {
  width: 100%;
  max-height: 100vh;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.homeBanner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
}

.homeBanner .bannerContent {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #fff;
}

.homeBanner .bannerContent .more {
  display: inline-flex;
  background-color: #fff;
  border-radius: 4px;
  padding: 4px 5px 4px 1rem;
  color: var(--color-base01);
  align-items: center;
  gap: 3rem;
  transition: all .2s ease-in-out;
  font-size: 12px;
}

.homeBanner .bannerContent .more:hover {
  gap: 4rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  color: #000;
}

.homeBanner .bannerContent .more span {
  display: block;
  background-color: var(--color-yellow);
  color: #000;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease-in-out;
}

.homeBanner .bannerContent .more:hover span {
  background-color: #000;
  color: #fff;
}

.homeBanner .bannerFoot {
  position: absolute;
  z-index: 3;
  bottom: 3rem;
  color: #4E4F50;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.homeBanner .pcPageMenu {
  position: absolute;
  bottom: 1rem;
  color: #fff;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.homeBanner .pcPageMenu a {
  color: #000;
  background-color: #fff;
  flex: 1;
  justify-content: space-between;
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
}

.homeBanner .pcPageMenu a.active{
  border-top: 3px solid var(--color-yellow);
}


.productBox {
  height: 40vh;
  background-size: 100% 100%;
  background-position: center;
  transition: all .2s ease-in-out;
}

.productBox:hover {
  background-size: 110% 110%;
}

.productBox h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 5px;
  margin-top: 1rem;
  background-color: var(--color-yellow);
}

#box01 {
  background-image: url('img01.png');
}

#box02 {
  background-image: url('img02.png');
}

#box03 {
  background-image: url('img03.png');
}

.title::after {
  content: '';
  display: block;
  width: 50px;
  height: 5px;
  margin-top: 1rem;
  background-color: var(--color-yellow);
}

.title a {
  color: #000;
}

.baseColor {
  color: var(--color-base02);
}

.yellow {
  color: var(--color-yellow);
}

.productIndex {
  background-color: var(--color-base03);
}

.link {
  display: inline-flex;
  background-color: #fff;
  border-radius: 4px;
  padding: 4px 5px 4px 1rem;
  color: var(--color-base01);
  align-items: center;
  gap: 3rem;
  transition: all .2s ease-in-out;
  font-size: 12px;
}

.link:hover {
  gap: 4rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: #000;
}

.link span {
  display: block;
  background-color: var(--color-yellow);
  color: #000;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease-in-out;
}

.link:hover span {
  background-color: #000;
  color: #fff;
}

.solution {
  background: url(img05.png) no-repeat center;
  background-size: cover;
  height: 50vh;
  color: #fff;
}

.swiperNews a {
  display: flex;
  width: 100%;
  background-color: var(--color-base03);
  display: flex;
  flex-direction: column;
  color: var(--color-base02);
  gap: .7rem;
  height: 250px;
  position: relative;
  transition: all .2s ease-in-out;
}

.swiperNews a h4 {
  color: #000;
}

.swiperNews a small {
  background-color: var(--color-base02);
  color: #fff;
  padding: .2rem 1rem;
  position: absolute;
  display: inline-block;
  left: 0;
  bottom: 0;
  transition: all .2s ease-in-out;
}

.swiperNews a:hover small {
  background-color: var(--color-yellow);
}

.swiper-pagination-bullet-active {
  background-color: var(--color-yellow) !important;
}

.quotation {
  background-color: var(--color-base02);
}

footer {
  background-color: var(--color-base03);
}


.pcMenuFixed {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border: 0px !important;
}

.mainMenuList {
  position: relative;
}

.secondMenu {
  display: none;
  position: absolute;
  left: 120px;
  top: 100%;
  background-color: rgba(240, 130, 0, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem 1rem 1rem;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  gap: .5rem;
}

.secondMenu a {
  color: #fff;
  text-wrap: nowrap;
  display: flex;
  align-items: center;
}

.mainMenuList:hover .secondMenu {
  display: flex;
  left: 0px;
}

.mainMenuList:hover .secondMenu i {
  font-size: 12px;
}

/* data-rel="dropmenu0_b" */
[data-rel="dropmenu0_b"] i,
[data-rel="dropmenu1_b"] i,
[data-rel="dropmenu6_b"] i {
  display: none !important;
}

.bgGrey {
  background-color: var(--color-base03);
}

.cpList {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cpList>img {
  transition: all .2s ease-in-out;
}

.cp:nth-child(1)>img {
  transform: translateX(-100%);
}

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

.cp:nth-child(4n+1) .cpList>div {
  background-color: var(--color-yellow);
}

.cp:nth-child(4n+2) .cpList>div {
  background-color: #651D74;
}

.cp:nth-child(4n+3) .cpList>div {
  background-color: #1D4179;
}

.cp:nth-child(4n+4) .cpList>div {
  background-color: #1D7460;
}

.cpList>div {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.cpList>div h5 {
  margin-bottom: 0;
  font-weight: normal;
}

.cpTable table {
  width: 100%;
}

.cpTable table td {
  padding: 1rem 1.5rem;
}

.cpTable table tr:nth-child(odd) td {
  background-color: var(--color-base03);
}


.cpTable table tr td:nth-child(1) {}

.applicationList i {
  color: var(--color-yellow) !important;
}

.nextOrprev a {
  color: var(--color-yellow);
}

.newsDetailTime a {
  color: var(--color-yellow);
}

.active>.page-link,
.page-link.active {
  background-color: var(--color-yellow);
  border-color: var(--color-yellow);
}

.equipment {
  height: 100vh;
  background-color: var(--color-base02);
  display: flex;
  justify-content: space-between;
}

.equipment>div {
  flex: 1;
  display: flex;
  height: 100%;
  background-color: #1D4179;
  align-items: center;
  justify-content: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  transition: all .2s ease-in-out;
}

.equipment>div::after { 
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 1;
  transition: all .2s ease-in-out;
}

.equipment>div:hover{
  background-size: 110% 110%;
}

.equipment>div:hover::after{
  background-color: rgba(0, 0, 0, 0);
}

.equipment>div>div{
  z-index: 2;
}

.equipment .cp01 {
  background-image: url(cp01.png);
}
.equipment .cp02 {
  background-image: url(cp02.png);
}
.equipment .cp03 {
  background-image: url(cp03.png);
}
.equipment .cp04 {
  background-image: url(cp04.png);
}
.equipment .cp05 {
  background-image: url(cp05.png);
}

#footerMenu a{
  color: var(--color-base02);
}

@media (max-width: 768px) {}