/*側邊icon*/
.footer-content .contact-icon a {
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    border-radius: 0%;
    background-color: #ff8813;
    margin-left: .5rem;
    margin-right: .5rem;
}

.footer-content .contact-icon a i {
    font-size: 1.2rem;
    color: #fff;
    line-height: 50px;
}


.footer-content .contact-icon a {
  display:block;
  width:50px;height:50px;
  margin-top: .5rem;
}  

.footer-content .contact-icon{
   display:block;
   position:fixed;right:-0.5%;top:45%;z-index:1000;
} 



/*body*/
.row [class^="col-"] {
  padding:10px;
}


body[data-type="fullpage"]:not(#managehome) #wrap > :not(:last-child) { margin-bottom: 0px; }


#wrap{
 background:#fff;
}

.fcol.fcol-header{
  display:none;
}



/*logo*/

 #logo img {
   padding: 0 16px 16px;
 }

@media only screen and (max-width: 767px) {
  #logo a img {
    margin: 0 auto;
  }
}


/*top*/
.navbar-nav > li > a {
    color: #fff;
}


.topnavbar .container {
  text-align: justify;
  font-size: 0;
  /*text-align: center;*/ 
  padding-top:0px;
}

.topnavbar .container::after {
  content: "";
  display: inline-block;
  width: 100%;
}

.topnavbar {
  background:#b71e1e;
  top:0px;
  position: relative;
  z-index:100;
  width:100%;
  padding: .6rem 0;
  height: 100px;
}


@media(max-width:600px){
   .topnavbar .container {
  text-align: center;
}
}


/*nav*/
#nav ul li a {
    white-space: nowrap;
    color: #fff;
    line-height: 1.3;
    font-weight: normal;
    padding: 10px 18px;
    font-size: 100%;
    border-right: 0px #888 dotted;
    transition:all 0.5s;
}

#nav ul li a:hover{
    color: #fff;
}

#nav ul li a span{transition:all 0.5s;}

#nav ul li a:hover span{border-top:2px solid #fff;padding-top:5px;}


#nav ul li.current a  {
    color: #ffc949;  
}


/*Banner*/
.swiper-container {
  height: auto !important;
}

.swiper-wrapper, .swiper-slide {
  height: 0 !important;
  padding-bottom: calc(800 / 1920 * 100%); /* 注意圖片高度與寬度要去掉單位 */
}

.swiper-slide {
  width: 100% !important;
}



/*南桃園有限電視_1*/
#bodyinpage.rwd-collapse.viewmode.default.cable-tv .fcol.fcol-1 .container{
  padding:60px 20px 0;
}



/*跑馬燈*/
:root{
  --marquee-height: 48px;
  --marquee-bg: linear-gradient(90deg,#fff 0%, #fff 100%);
  --accent: #c40000;
  --text-color: #222;
  --speed: 20s; /* 調整滾動速度（時間越小越快） */
}
/* 基本容器 */
.fancy-marquee{
  display:flex;
  align-items:center;
  gap:12px;
  background: var(--marquee-bg);
  border-radius:8px;
  padding:8px 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  max-width: 100%;
  overflow: visible;
  font-family: "Noto Sans TC", sans-serif;
}

/*遮罩（左右柔和漸層）*/
.marquee-mask{
  position: relative;
  flex:1 1 auto;
  height: var(--marquee-height);
  overflow: hidden;
  border-radius:6px;
  background: linear-gradient(180deg,#fcfcfc,#fafafa);
  display:flex;
  align-items:center;
}

/* 左右漸層淡出（CSS mask效果） */
.marquee-mask::before,
.marquee-mask::after{
  content: "";
  position: absolute;
  top:0; bottom:0;
  width: 60px;
  pointer-events:none;
  z-index:2;
}
.marquee-mask::before{
  left:0;
  background: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,0));
}
.marquee-mask::after{
  right:0;
  background: linear-gradient(270deg, rgba(255,255,255,1), rgba(255,255,255,0));
}

/* 滾動軌道（inline-flex 使項目連續）*/
.marquee-track{
  display:inline-flex;
  gap:40px;
  align-items:center;
  white-space:nowrap;
  will-change: transform;
  z-index:1;
  padding-left: 10px;
  /* 動畫 */
  animation: marqueeMove linear infinite;
  animation-duration: var(--speed);
}

/* 單一項目 */
.marquee-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color:var(--text-color);
  font-weight:500;
  font-size:16px;
  padding:8px 14px;
  border-radius:40px;
  background: linear-gradient(90deg, rgba(196,0,0,0.08), rgba(196,0,0,0.02));
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* 數字強調 */
.marquee-item strong{
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 1px;
}

/* hover 小彈跳效果 */
.marquee-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* 暫停按鈕 */
.marquee-pause{
  background: white;
  border: 2px solid rgba(0,0,0,0.06);
  width:40px; height:40px;
  border-radius:8px;
  display:inline-grid;
  place-items:center;
  cursor:pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  transition: transform .15s ease, background .15s ease;
}
.marquee-pause:hover{ transform:translateY(-3px); }

/* 按下顯示播放符號 */
.marquee-pause[aria-pressed="true"]{ background: var(--accent); color: #fff; border-color: var(--accent); }

/* 小螢幕字變小 */
@media (max-width:520px){
  .marquee-item{ font-size:14px; padding:6px 10px; gap:6px; }
  :root{ --marquee-height:44px; }
}

/* keyframes: 從 0 到 -50%（因為內容被複製兩次，達成無縫） */
@keyframes marqueeMove{
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 減少動作使用者偏好 */
@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; }
}

@media(max-width:767px){
.tv.row .col-md-7,
.tv.row .col-md-5{
  flex:0 0 100%;
  max-width:100%;
  }
}

/*手機版News頁順序調整*/
@media(max-width:576px){
  .tv.row .col-md-7 {
    order: 1;
  }
  .tv.row .col-md-5 {
    order: 0;
  }
}



/*南桃園有線電視_2*/
#bodyinpage.rwd-collapse.viewmode.default.cable-tv .fcol.fcol-2{
   background:url(https://static.iyp.tw/409849/files/2fddb1b1-9007-4391-affc-9205d9bf32ac.png)no-repeat;
   background-position:top center;
   background-size:cover;
} 


/*手機版News頁順序調整*/
@media(max-width:767px){
  .tv.row .col-md-7 {
    order: 1;
   margin-top: 35px; 
  }
  .tv.row .col-md-5 {
    order: 0;
  }
}

@media (max-width: 767px) {
  header {
    width: 50%;
    margin:-32px auto;
  }
}




/* --- 主容器卡片 --- */
        tv {
            background-color: var(--white);
            width: 100%;
            max-width: 600px; 
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            overflow: hidden;
            padding-bottom: 20px; /* 底部留白 */
        }

        /* --- 頂部標題區 --- */
        header {
            background: linear-gradient(135deg, var(--primary-color), #003d80);
            color: var(--white);
            padding: 30px 20px;
            text-align: center;
            border-radius: 0px 0px 30px 30px;
            width: 50%;
            min-height: 150px;
            margin-left: 15%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: -28px;
}

        header h1 {
            margin: 0;
            font-size: 28px;
            letter-spacing: 1px;
        }

        header p {
            margin: -60px 0 0;
            opacity: 0.9;
            font-size: 15px;
        }

@media(max-width:767px){
   header {
    width: 50%;
    margin:-32px auto; 
   }
}


        /* --- 內容區塊通用設定 --- */
        .section {
            padding: 25px;
            border-bottom: 1px solid #eee;
        }

        .section-title {
            font-size: 18px;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* --- 產品介紹 (色塊凸顯) --- */
        .highlight-box {
            background: linear-gradient(to right, #fff5eb, #fff);
            border-left: 5px solid var(--accent-color);
            padding: 20px;
            margin: 20px;
            border-radius: 8px;
        }

        .product-badge {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            font-size: 12px;
            padding: 4px 8px;
            border-radius: 4px;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .highlight-box h3 {
            margin: 0 0 10px 0;
            color: var(--text-dark);
            font-size: 20px;
        }

        .highlight-box p {
            margin: 0;
            color: var(--text-light);
            font-size: 15px;
        }

        /* --- 服務項目 (加框標籤) --- */
        .tags-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .service-tag {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 50px; 
            color: var(--text-dark);
            font-size: 14px;
            transition: all 0.2s ease;
            cursor: default;
        }

        .service-tag::before {
            content: '✓'; 
            color: var(--primary-color);
            font-weight: bold;
            margin-right: 6px;
        }

        .service-tag:hover {
            border-color: var(--primary-color);
            background-color: #f0f7ff;
            color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }

        /* --- 底部聯絡按鈕區 (更新部分) --- */
        .cta-footer {
            display: flex; /* 讓按鈕並排 */
            gap: 15px;
            padding: 20px 25px 10px 25px;
        }

        .cta-btn {
            flex: 1; /* 兩個按鈕等寬 */
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            padding: 12px 10px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 16px;
            color: white;
            transition: filter 0.2s, transform 0.2s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            filter: brightness(1.1); /* 滑鼠移過去變亮 */
        }

        /* LINE 按鈕樣式 */
        .btn-line {
            background-color:#06c655;
        }
        
        /* 電話按鈕樣式 */
        .btn-phone {
            background-color: var(--accent-color);
        }

        /* 手機版小調整：如果螢幕太小，字體自動縮一點以免換行 */
        @media (max-width: 380px) {
            .cta-btn {
                font-size: 14px;
            }
        }





/*南桃園有線電視_3*/
#bodyinpage.rwd-collapse.viewmode.default.cable-tv .fcol.fcol-3{
   background:url(https://static.iyp.tw/409849/files/65a2701b-3d6d-45ec-a925-b12aa7ff45c3.png)no-repeat;
   background-position:top center;
   background-size:cover;
} 



/* ========================
   讓三個方案固定同列
======================== */
.plans-wrapper {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 40px 20px;
    flex-wrap: nowrap;
}

@media (max-width: 950px) {
    .plans-wrapper {
        flex-wrap: wrap;
    }
}

/* ========================
   方案外框 + hover 動態
======================== */
.plan-box {
    background: white;
    width: 33.3%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 20px 24px;
    text-align: center;
    transition: .3s ease;
    cursor: pointer;
}

.plan-box:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

@media(max-width:900px){
.plan-box {
    background: white;
    width: 48%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 20px 24px;
    text-align: center;
    transition: .3s ease;
    cursor: pointer;
  }
}

@media(max-width:600px){
.plan-box {
    background: white;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 20px 24px;
    text-align: center;
    transition: .3s ease;
    cursor: pointer;
}
}


/* ========================
   方案標題強調效果
======================== */

/* 選擇1：半圓底（建議）
-----------------------*/
.plan-header {
    font-size: 26px;
    color: #222;
    margin-bottom: 15px;
    display: inline-block;
    padding: 6px 22px;
    background: #c40000;
    border-radius: 25px 25px 0 0; /* 半圓膠囊 */
    font-weight: bold;
}

h2.plan-header{
  color:#fff;
}


/* ========================
   標題下的紅底區塊
======================== */
.plan-title.red {
    background: #c40000;
    color: #fff;
    padding: 14px 10px;
    font-size: 20px;
    border-radius: 8px;
    line-height: 1.5;
}

.plan-title .sub {
    font-size: 14px;
    opacity: .9;
}

/* ========================
        清單
======================== */
.plan-list {
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.plan-list li {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}

.speed {
    color: #c40000;
    font-weight: bold;
}

/* ========================
     價格強調效果
======================== */

/* 選擇1：半圓底價格徽章（建議） */
.price {
    background: #c40000;
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
}

/* ========================
    方案三 — 單獨的大字價格
======================== */
.big-price {
    margin-top: 20px;
    font-size: 34px;
    color: #c40000;
    font-weight: bold;
}

.big-price .unit {
    font-size: 20px;
    color: #222;
    margin-left: 4px;
}

/* ========================
    小字
======================== */
.note {
    margin-top: 16px;
    font-size: 14px;
    color: #555;
}

.center-text {
    margin-top: 20px;
    color: #c40000;
    font-size: 18px;
}

.main-container .price{
  color:#fff;
}



/*南桃園有限電視_4*/
#bodyinpage.rwd-collapse.viewmode.default.cable-tv .fcol.fcol-4 {
  background-image: linear-gradient(to bottom,#fff 70%, #c40000 30%);
  min-height:400px;
}

#bodyinpage.rwd-collapse.viewmode.default.cable-tv .fcol.fcol-4 .container{
  padding:0px 20px;
}


/*owl*/
.owl-carousel.owl-theme {
  padding: 0 1rem 2rem;
}
.owl-carousel.owl-theme .owl-nav {
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
}
.owl-carousel.owl-theme .owl-dots {
  bottom: 0;
}
.owl-carousel.owl-theme button:focus {
  outline: none;
}
.owl-carousel.owl-theme .owl-nav,
.owl-carousel.owl-theme .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
}
.owl-carousel.owl-theme .owl-nav .owl-prev {
  float: left;
  transform: translateX(-100%);
}
.owl-carousel.owl-theme .owl-nav .owl-next {
  float: right;
  transform: translateX(100%);
}
.owl-carousel.owl-theme .owl-nav .owl-prev:hover,
.owl-carousel.owl-theme .owl-nav .owl-next:hover{
  background: none;
  color: inherit;
}
.owl-carousel.owl-theme .owl-nav .fa{
  font-size: 3em; /*箭頭大小*/
}

.editmode .owl-carousel.owl-loaded {
  display: flex;
  flex-wrap: wrap;
}
.editmode .owl-carousel > div {
  flex: 0 0 25%;
  max-width: 25%;
}


.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  background: #fff;
  box-shadow: 0 5px 5px rgba(44,44,44,0.25);
  border: 1px solid #ccc;
  padding: 0px;
  border-radius: 8px;
}



@media(max-width:900px){  
#bodyinpage.rwd-collapse.viewmode.default.cable-tv .fcol.fcol-4 .col-md-7{
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media(max-width:900px){ 
  .catalogue.row .col-md-7{
     flex: 0 0 100%;
    max-width: 100%;
  }
}


.catalogue.row .col-md-7{
  margin-top:8%;
}

@media(max-width:767px){
.catalogue.row .col-md-7{
  margin-top:-5%;
 }
}


/*南桃園有限電視_5~6*/
#bodyinpage.rwd-collapse.viewmode.default.cable-tv .fcol.fcol-5,
#bodyinpage.rwd-collapse.viewmode.default.cable-tv .fcol.fcol-6{
  display:none;
}



/*＿＿＿南桃園寬頻網路＿＿＿*/
#bodyinpage.rwd-collapse.viewmode.product.network .fcol.fcol-3 {
  background-image: linear-gradient(to bottom,#fff 80%, #c40000 20%);
}

#bodyinpage.rwd-collapse.viewmode.product.network .fcol.fcol-3 .container {
  padding-bottom: 0px;
}

.service-section {
  background: #f0f6ff;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.service-box {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.service-header h2 {
  font-size: 28px;
  margin: 0;
  color: #1a3c8c;
  font-weight: 700;
}

.service-icon {
  width: 45px;
  height: 45px;
}

.service-desc {
  font-size: 18px;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-item {
  background: #e8f0ff;
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #003c9f;
  font-size: 17px;
  font-weight: 600;
}

.feature-icon {
  width: 26px;
  height: 26px;
}

/* RWD */
@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }
  .service-header h2 {
    font-size: 22px;
  }
}




/* --- 新增：簡介文字區 --- */
        .intro-text {
            padding: 20px 25px 10px 25px;
            text-align: center;
            font-size: 15px;
            color: var(--text-dark);
        }

        /* --- 新增：特色圖示區 (Features) --- */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            padding: 15px 20px;
            background-color: var(--light-blue-bg);
            margin: 10px 20px;
            border-radius: 12px;
        }
        @media(max-width:600px){
          .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
          }
        }

        .feature-item {
            text-align: center;
            font-size: 18px;
            color: var(--primary-color);
            font-weight: bold;
          　justify-content: center;
        }

        .feature-icon {
            font-size: 24px;
            margin-bottom: 5px;
            display: block;
        }

        /* --- 產品與服務通用 --- */
        .section { padding: 20px 25px; border-bottom: 1px solid #eee; }
        .section-title {
            font-size: 18px; font-weight: bold; color: var(--primary-color);
            margin-bottom: 15px; display: flex; align-items: center; gap: 8px;
        }

        .highlight-box {
            background: linear-gradient(to right, #fff5eb, #fff);
            border-left: 5px solid var(--accent-color);
            padding: 20px; margin: 20px 25px; border-radius: 8px;
        }
        .product-badge {
            display: inline-block; background-color: var(--accent-color);
            color: white; font-size: 12px; padding: 4px 8px;
            border-radius: 4px; margin-bottom: 10px; font-weight: bold;
        }
        .highlight-box h3 { margin: 0 0 8px 0; color: var(--text-dark); font-size: 19px; }
        .highlight-box p { margin: 0; color: var(--text-light); font-size: 14px; }

        .tags-wrapper { display: flex; flex-wrap: wrap; gap: 8px; }
        .service-tag {
            display: inline-flex; align-items: center; padding: 6px 14px;
            background-color: #fff; border: 1px solid #ddd; border-radius: 50px;
            color: var(--text-dark); font-size: 14px; cursor: default;
        }
        .service-tag::before { content: '✓'; color: var(--primary-color); font-weight: bold; margin-right: 5px; }

    


/*＿＿＿信和吉元有線電視＿＿＿*/
#bodyinpage.rwd-collapse.viewmode.news.cable2-tv .fcol.fcol-1 {
  background-image: linear-gradient(to bottom,#fff 90%, #c40000 20%);
}

#bodyinpage.rwd-collapse.viewmode.news.cable2-tv .fcol.fcol-1 .container {
  padding-bottom: 0px;
}

#bodyinpage.rwd-collapse.viewmode.news.cable2-tv .fcol.fcol-2{
  display:none;
}


/*＿＿＿信和吉元寬頻網路＿＿＿*/
#bodyinpage.rwd-collapse.viewmode.contact.network2 .fcol.fcol-1 {
  background-image: linear-gradient(to bottom,#fff 90%, #c40000 20%);
}

#bodyinpage.rwd-collapse.viewmode.contact.network2 .fcol.fcol-1 .container {
  padding-bottom: 0px;
}

#bodyinpage.rwd-collapse.viewmode.contact.network2 .fcol.fcol-2{
  display:none;
}

/* --- 核心特色區塊 (大圖示) --- */
        .feature-hero {
            background-color: var(--speed-bg);
            margin: 15px 25px;
            padding: 25px;
            border-radius: 16px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .wifi-icon {
            font-size: 50px;
            margin-bottom: 10px;
            background: linear-gradient(45deg, #ff6b00, #ff0000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 2px 4px rgba(255,107,0,0.3));
        }

        .hero-text {
            font-size: 26px;
            font-weight: bold;
            color: #cf0000;
        }

        .hero-sub {
            font-size: 16px;
            color: var(--text-gray);
            margin-top: 5px;
        }

        /* --- 服務條列 (Checklist) --- */
        .checklist-section {
            padding: 10px 35px 25px 35px;
        }

        .checklist-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 15px;
            color: var(--text-dark);
            padding-bottom: 8px;
            border-bottom: 1px dashed #333;
        }

        .checklist-item:last-child {
            border-bottom: none;
        }

        .check-icon {
            color: var(--primary-color);
            margin-right: 12px;
            font-weight: bold;
            font-size: 18px;
        }

    



/*h1*/
.h1title h1{
  display:none;
}


/*form*/
.mark{
  background:none;
}


/*footer*/
#foot-nav{
  display:none;
}

#footer .container{
  padding:15px
}


@media(max-width:900px){
  #footer .col-md-4,
  #footer .col-md-2{
    max-width:100%;
    flex:0 0 100%;
 }
}


@media(max-width:900px){
  #footer .col-md-5 .col-md-2{
    margin: 0 auto;
  }
}

@media(max-width:767px){
  #footer .col-md-5 {
  display:none;
  } 
}
  

#footer .col-md-2 img{
  width:60%
}

@media(max-width:767px){
  #footer .col-md-2 img{
   width:20%;
   height:auto; 
  }  
}


/*nav*/
#nav2 {
  display:inline-block;
  vertical-align:middle
}
#nav2 ul li {
  display:inline-block
}
#nav2 ul li a {
  white-space:nowrap;
  overflow:hidden;
  -ms-text-overflow:ellipsis;
  text-overflow:ellipsis;
  color: #fff;
  line-height:2;
  font-weight: normal;
  padding: 10px 18px;
  font-size: 100%;
  border-right: 0px #888 dotted;
  transition:all 0.5s;
}
#nav2 ul li a:hover {
  color:#fff
}

#nav2 ul li a:hover{
    color: #ffc949;
}


#nav2 ul li.current a  {
    color: #ffc949;  
}


/*btn*/
@media(max-width:900px){
  #product-header .col-md-6{
    flex:0 0 100%;
    max-width:100%;
  }
}

@media(max-width:900px){
  #news-header .col-md-6{
    flex:0 0 100%;
    max-width:100%;
  }
}

@media(max-width:900px){
 #bodyinpage.rwd-collapse.viewmode.contact.network2  .col-md-6{
    flex: 0 0 100%;
    max-width: 100%;
  }
}