/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */
.btn.question {
    top: -2px;
    font-family: "Open Sans";
    padding: 6px 10px;
    font-size: 13px;
}

.top-header {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 250px;
    padding-bottom: 90px;
}

.footer .footer-menu .menu-item a {
    color: #808080;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-size: 15px;
}

.top-footer-info .footer-feature-inner {
    width: 100%;
    padding: 35px 0px 25px 0px;
    display: inline-block;
    background-color: #22262f;
    font-size: 110%;
}

.nav-menu .main-menu a {
    font: 15px "Noto Sans TC";
    margin-right: 15px;
    color: #121e25;
    position: relative;
    padding: 30px 10px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.nav-menu .main-menu .menu-item .menu-large .service-list .service .media-body p {
    font-size: 14px;
}

.h-services .wrap-service {
    border-radius: 15px;
}

.pricing.tablepage .wrapper {
    border-radius: 15px;
}

.services.classic .service-wrap .service-section {
    border-radius: 15px;
}

img {
     border-radius: 15px;
}

.sec-bg1 {
    border-radius: 15px;
}

.sec-normal2 {
    padding: 80px 0px 0px;
    position: relative;
    z-index: 0;
}
.sec-normal3 {
    padding: 30px 0px 0px;
    position: relative;
    z-index: 0;
}

.pricing.tablepage .wrapper.active {
    border-radius: 15px;
}

/* 讓客服中心按鈕與 LINE icon 對齊 */
.soc-icons .btn.btn-default-grad-purple-fill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  height: 45px !important;       /* 與 LINE 一樣高 */
  padding: 0 16px !important;     /* 左右內距 */
  line-height: 1 !important;      /* 不用舊的行高，避免上下偏移 */
  white-space: nowrap !important; /* 避免斷行 */
  box-sizing: border-box;         /* 邊框/內距都算進高度 */
  font-family: "Noto Sans TC", sans-serif; /* 避免字體 baseline 差異 */
}

/* 有些主題用 pseudo-element 做漸層/光澤，會遮到文字 → 拉到背景層 */
.soc-icons .btn.btn-default-grad-purple-fill::before,
.soc-icons .btn.btn-default-grad-purple-fill::after {
  pointer-events: none;
  z-index: 0;
}
.soc-icons .btn.btn-default-grad-purple-fill { position: relative; z-index: 1; }

再補一條 LINE 圖設定，確保兩者一致：

.soc-icons .line-icon img {
  width: 45px;
  height: 45px;
  display: block;
}
.soc-icons {            /* 讓兩個元件同一基準對齊 */
  display: flex;
  align-items: center;
  gap: 10px;
}

為什麼會跑版？
