.goTop>img {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.goTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
}


*,
*::before,
*::after {
    box-sizing: border-box;

}

/* ========== 導航欄樣式 ========== */
.navbar-header {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.navbar-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.navbar-logo a {
    font-size: 24px;
    font-weight: bold;
    color: #222222;
    text-decoration: none;
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-item {
    position: relative;
    margin-left: 35px;
}

.navbar-link {
    display: flex;
    align-items: center;
    color: #222222;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.navbar-link:hover,
.navbar-item.active .navbar-link {
    color: #ff5733;
    text-decoration: underline;
    text-underline-offset: 8px;
}

/* 下拉箭頭 */
.dropdown-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #222222;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.navbar-link:hover .dropdown-arrow,
.navbar-item.active .dropdown-arrow {
    border-top-color: #ff5733;
}

.navbar-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* 二級下拉菜單 */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 160px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
}

.navbar-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    margin: 0;
}

.dropdown-item a {
    display: block;
    padding: 10px 20px;
    color: #606060;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.dropdown-item a:hover {
    color: #ff5733;
    background-color: #f8f8f8;
}

.dropdown-item:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
}

/* 手機端切換按鈕 */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1002;
}

.toggle-icon {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #222222;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.navbar-toggle.active .toggle-icon:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
    background-color: #ff5733;
}

.navbar-toggle.active .toggle-icon:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .toggle-icon:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
    background-color: #ff5733;
}

/* ========== 手機端自適應樣式 ========== */
@media screen and (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .navbar-menu.active {
        transform: translateX(0);
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .navbar-item {
        margin: 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-link {
        justify-content: left;
        padding: 15px 20px;
        font-size: 16px;
    }

    .navbar-link:hover,
    .navbar-item.active .navbar-link {
        text-underline-offset: 6px;
    }

    /* 手機端下拉箭頭 */
    .dropdown-arrow {
        border-top-color: #222222;
    }

    .navbar-link:hover .dropdown-arrow,
    .navbar-item.active .dropdown-arrow {
        border-top-color: #ff5733;
    }

    .navbar-dropdown .dropdown-arrow {
        transition: transform 0.3s ease;
                position: absolute;
        right: 5px;

    }

    .navbar-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* 手機端二級菜單 */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        padding: 0;
        transition: max-height 0.3s ease;
    }

    .navbar-dropdown.open .dropdown-menu {
        max-height: 500px;
        padding: 5px 0;
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .dropdown-item a {
        padding: 12px 20px;
        font-size: 14px;
        text-align: left;
    }

    .dropdown-item:not(:last-child) {
        border-bottom: 1px solid #f0f0f0;
    }
}

/* ========== Banner模塊樣式 ========== */
.banner-section {
    width: 100%;
    background: url('../images/ban.jpg') center/cover no-repeat;
    position: relative;
    padding: 120px 20px;
}



.banner-container {
    max-width: 1350px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.banner-title-en {
    font-size: 42px;
    font-weight: bold;
    color: #ff6a12;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
}

.banner-title-zh {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 25px 0;
}

.banner-description {
    font-size: 18px;
    color: #dfe0e2;
    line-height: 1.8;
    margin: 0 0 40px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff5733;
    color: #ffffff;
    border: none;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.banner-btn:hover {
    background-color: #e84a25;
    transform: translateY(-2px);
}

.banner-btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

/* ========== Banner手機端自適應樣式 ========== */
@media screen and (max-width: 768px) {
    .banner-section {
        padding: 80px 15px;
    }

    .banner-title-en {
        font-size: 24px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .banner-title-zh {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .banner-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .banner-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .banner-btn-icon {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }
}

/* ========== Services模塊樣式 ========== */
.services-section {
    width: 100%;
   
    background-color: #ffffff;
}
.services-section.services-section0 {
   padding:100px 0;
}
.services-container {
    max-width: 1350px;
    margin: 0 auto;
}

.services-section.services-section0 .services-title-en {
    font-size: 42px;
    font-weight: bold;
    color: #ff6a12;
    text-align: center;
    margin: 0 0 25px 0;
}

 .services-section.services-section0 .services-title-zh {
    font-size: 36px;
    font-weight: bold;
    color: #000000;
    text-align: center;
    margin: 0 0 20px 0;
}

.services-section.services-section0 .services-description {
    font-size: 18px;
    color: #606060;
    text-align: center;
    line-height: 1.6;
    margin: 0 0 60px 0;
    padding: 0 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-section.services-section0 .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.services-section.services-section0 .services-card {
    background-color: #f7f8fc;
    padding: 45px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-section.services-section0 .services-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.services-section.services-section0 .services-card-title {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    margin: 0 0 15px 0;
}

.services-section.services-section0 .services-card-desc {
    font-size: 18px;
    color: #606060;
    line-height: 1.8;
    margin: 0 0 25px 0;
}

.services-section.services-section0 .services-card-btn {
    background-color: #ff5733;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.services-section.services-section0 .services-card-btn:hover {
    background-color: #e84a25;
    transform: translateY(-2px);
}

/* ========== Services手機端自適應樣式 ========== */
@media screen and (max-width: 768px) {
   .services-section.services-section0 {
   padding:50px 0;
}
   .services-section.services-section0  .services-title-en {
        font-size: 24px;
    }

    .services-section.services-section0 .services-title-zh {
        font-size: 20px;
    }

  .services-section.services-section0   .services-description {
        font-size: 14px;
        margin-bottom: 40px;
    }

   .services-section.services-section0  .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

   .services-section.services-section0  .services-card {
        padding: 30px 25px;
    }

   .services-section.services-section0  .services-card-title {
        font-size: 18px;
    }

   .services-section.services-section0  .services-card-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }

   .services-section.services-section0  .services-card-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* ========== CTA模塊樣式 ========== */
.cta-section {
    width: 100%;
    background: url('../images/ban2.jpg') center/cover no-repeat;
    position: relative;
    padding: 150px 20px;
}


.cta-container {
    max-width: 1350px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 30px 0;
}

.cta-description {
    font-size: 16px;
    color: #cdced0;
    line-height: 1.8;
    margin: 0 0 15px 0;
}

.cta-btn {
    display: inline-block;
    background-color: #ff5733;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
    background-color: #e84a25;
    transform: translateY(-2px);
}

/* ========== CTA手機端自適應樣式 ========== */
@media screen and (max-width: 768px) {
    .cta-section {
        padding: 70px 15px;
    }

    .cta-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .cta-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .cta-btn {
        padding: 12px 32px;
        font-size: 14px;
        margin-top: 15px;
    }
}

/* ========== News模塊樣式 ========== */
.news-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #ffffff;
}

.news-container {
    max-width: 1350px;
    margin: 0 auto;
}

.news-title-en {
    font-size: 36px;
    font-weight: bold;
    color: #ff6a12;
    text-align: center;
    margin: 0 0 15px 0;
}

.news-title-zh {
    font-size: 36px;
    font-weight: bold;
    color: #141b2d;
    text-align: center;
    margin: 0 0 25px 0;
}

.news-description {
    font-size: 16px;
    color: #606060;
    text-align: center;
    margin: 0 0 60px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.news-card {
    display: block;
    text-decoration: none;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.news-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-card-date {
    display: block;
    font-size: 14px;
    color: #8a8a8a;
    padding: 15px 20px 10px;
}

.news-card-title {
   
    font-weight: bold;
    color: #141b2d;
    padding: 0 20px 20px;
    margin: 0;
    line-height: 1.5;
}

/* ========== News手機端自適應樣式 ========== */
@media screen and (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .news-section {
        padding: 60px 15px;
    }

    .news-title-en {
        font-size: 24px;
    }

    .news-title-zh {
        font-size: 20px;
    }

    .news-description {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card-img {
        height: 160px;
    }

    .news-card-title {
        font-size: 14px;
    }
}

/* ========== Footer模塊樣式 ========== */
.footer-section {
    width: 100%;
    background-color: #1a2233;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1350px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-left {
    flex: 1;
    min-width: 280px;
}

.footer-company {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.footer-company-en {
    font-size: 15px;
    color: #a8abb2;
    margin: 0 0 25px 0;
}

.footer-label {
    display: block;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-address-text,
.footer-email-text {
    font-size: 15px;
    color: #a8abb2;
    margin: 0;
    line-height: 1.6;
}

.footer-address {
    margin-bottom: 20px;
}

.footer-center {
    flex: 1;
    display: flex;
    gap: 60px;
    justify-content: center;
}

.footer-column {
    min-width: 120px;
}

.footer-column-title {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 20px;
}

.footer-links a {
    color: #a8abb2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff5733;
}

.footer-right {
    flex: 0 0 auto;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background-color: #ff5733;
    transform: translateY(-3px);
}

.social-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* 社交二維碼樣式 */
.social-item {
    position: relative;
}

.social-qrcode {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    background-color: #ffffff;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
    white-space: nowrap;
       width: 120px;
}

.social-qrcode::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
 
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #ffffff;
}

.social-qrcode img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
}

.social-item:hover .social-qrcode {
    opacity: 1;
    visibility: visible;
}

.footer-bottom {
    padding-top: 25px;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-copyright {
    font-size: 12px;
    color: #a8abb2;
    text-align: center;
    margin: 0;
}

/* ========== Footer手機端自適應樣式 ========== */
@media screen and (max-width: 992px) {
    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-center {
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .footer-section {
        padding: 40px 15px 25px;
    }

    .footer-content {
        flex-direction: column;
        gap: 35px;
        margin-bottom: 30px;
    }

    .footer-left {
        min-width: auto;
    }

    .footer-center {
        justify-content: left;
        gap: 30px;
    }

    .footer-column {
        min-width: auto;
    }

    .footer-right {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-copyright {
        font-size: 11px;
    }
}

/* ========== Hero模塊樣式 ========== */
.hero-section {
    width: 100%;
    background: url('../images/ywban.jpg') center/cover no-repeat;
    position: relative;
    padding: 120px 20px;
}



.hero-container {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 42px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 30px 0;
}

.hero-desc-zh {
    font-size: 18px;
    color: #bbbdc0;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.hero-desc-en {
    font-size: 16px;
    color: #bbbdc0;
    line-height: 1.8;
    margin: 0 0 40px 0;
    opacity: 0.8;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.hero-stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    min-width: 80px;
}

.stat-number.counted {
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #bbbdc0;
}

.hero-btn {
    display: inline-block;
    background-color: #ff6b35;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-btn:hover {
    background-color: #e85a2b;
    transform: translateY(-2px);
}

/* ========== Hero手機端自適應樣式 ========== */
@media screen and (max-width: 768px) {
    .hero-section {
        padding: 80px 15px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .hero-desc-zh {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .hero-desc-en {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 30px;
    }

    .hero-stat {
        width: calc(50% - 15px);
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 12px;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* ========== Features模塊樣式 ========== */
.features-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #ffffff;
}

.features-container {
    max-width: 1350px;
    margin: 0 auto;
}

.features-title {
    font-size: 36px;
    font-weight: bold;
    color: #141b2d;
    text-align: center;
    margin: 0 0 50px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.features-card {
    background-color: #ffffff;
    padding: 45px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.features-card-desc {
    font-size: 22px;
    font-weight: bold;
    color: #454545;
    line-height: 1.8;
    margin: 0 0 30px 0;
    text-align: left;
}

.features-card-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: #ff5733;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.features-card-btn:hover {
    background-color: #e84a25;
    transform: translateY(-2px);
}

.features-cta {
    text-align: center;
    padding-top: 20px;
}

.features-cta-en {
    font-size: 32px;
    font-weight: bold;
    color: #ff6a12;
    margin: 0 0 10px 0;
}

.features-cta-zh {
    font-size: 36px;
    font-weight: bold;
    color: #141b2d;
    margin: 0 0 50px 0;
}

.features-cta-btn {
    background-color: #ff5733;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.features-cta-btn:hover {
    background-color: #e84a25;
    transform: translateY(-2px);
}

/* ========== Features手機端自適應樣式 ========== */
@media screen and (max-width: 768px) {
    .features-section {
        padding: 60px 15px;
    }

    .features-title {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 45px;
    }

    .features-card {
        padding: 30px 25px;
    }

    .features-card-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .features-card-btn {
        padding: 10px 24px;
        font-size: 13px;
    }

    .features-cta-en {
        font-size: 20px;
    }

    .features-cta-zh {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .features-cta-btn {
        padding: 12px 32px;
        font-size: 14px;
    }
}

/* ========== Tabs模塊樣式 ========== */
.tabs-section {
    width: 100%;
    padding: 50px 20px;
    background-color: #ffffff;
}

.tabs-container {
    max-width: 1350px;
    margin: 0 auto;
}

.tabs-header {
    position: relative;
    margin-bottom: 50px;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-evenly;
    margin: 0;
    padding: 0;
}

.tabs-item {
    margin-right: 40px;
    position: relative;
}

.tabs-link {
    display: block;
    font-size: 18px;
    color: #9c9c9c;
    text-decoration: none;
    padding: 15px 0;
    transition: color 0.3s ease;
    position: relative;
}

.tabs-link:hover,
.tabs-item.active .tabs-link {
    color: #000000;
}

.tabs-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #ff5733;
    transition: width 0.3s ease;
}

.tabs-link:hover::after,
.tabs-item.active .tabs-link::after {
    width: 100%;
}

.tabs-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
}

.tabs-content {
    padding-top: 20px;
}

.tabs-title {
    font-size: 32px;
    font-weight: bold;
    color: #232323;
    text-align: center;
    margin: 0 0 35px 0;
}



.tabs-body p {
    font-size: 16px;
    color: #5e5e5e;
    line-height: 2;
    margin: 0 0 25px 0;
    text-align: justify;
}

.tabs-body p:last-child {
    margin-bottom: 0;
}

/* ========== Tabs手機端自適應樣式 ========== */
@media screen and (max-width: 768px) {
    .tabs-section {
        padding: 35px 15px;
    }

    .tabs-header {
        margin-bottom: 35px;
    }

    .tabs-item {
        margin-right: 25px;
        margin-bottom: 10px;
    }

    .tabs-link {
        font-size: 14px;
        padding: 10px 0;
    }

    .tabs-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .tabs-body p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 20px;
        text-align: left;
    }
}

/* ========== Timeline模塊樣式 ========== */
.timeline-section {
    width: 100%;
    padding: 50px 20px;
    background-color: #ffffff;
    padding-top: 0;
}

.timeline-container {
    max-width: 1350px;
    margin: 0 auto;
}

.timeline-header {
    margin-bottom: 35px;
}

.timeline-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.timeline-item {
    margin-right: 45px;
    position: relative;
}

.timeline-link {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #9c9c9c;
    text-decoration: none;
    padding: 12px 0;
    transition: color 0.3s ease;
    position: relative;
}

.timeline-link:hover,
.timeline-item.active .timeline-link {
    color: #ff5733;
}

.timeline-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #ff5733;
    transition: width 0.3s ease;
}

.timeline-link:hover::after,
.timeline-item.active .timeline-link::after {
    width: 100%;
}

.timeline-content {
    background-color: #f5f5f5;
    padding: 45px;
    border-radius: 8px;
}

.timeline-panel {
    display: none;
}

.timeline-panel.active {
    display: block;
}

.timeline-panel-title {
    font-size: 36px;
    font-weight: bold;
    color: #5a5858;
    margin: 0 0 30px 0;
}

.timeline-panel-body {
    max-width: 100%;
}

.timeline-panel-body p {
    font-size: 16px;
    color: #5e5e5e;
    line-height: 2;
    margin: 0 0 25px 0;
    text-align: justify;
}

.timeline-panel-body p:last-child {
    margin-bottom: 0;
}

/* ========== Timeline手機端自適應樣式 ========== */
@media screen and (max-width: 768px) {
    .timeline-section {
        padding: 35px 15px;
    }

    .timeline-header {
        margin-bottom: 25px;
    }

    .timeline-item {
        margin-right: 25px;
        margin-bottom: 10px;
    }

    .timeline-link {
        font-size: 16px;
        padding: 10px 0;
    }

    .timeline-content {
        padding: 30px 20px;
    }

    .timeline-panel-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .timeline-panel-body p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 20px;
        text-align: left;
    }
}

/* ========== Join模塊樣式 ========== */
.join-section {
    width: 100%;
    background: url('../images/hzban.jpg') center/cover no-repeat;
    position: relative;
    padding: 80px 20px;
}



.join-container {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.join-title-en {
    font-size: 36px;
    font-weight: bold;
    color: #ff6a12;
    text-align: center;
    margin: 0 0 20px 0;
}

.join-title-zh {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    margin: 0 0 50px 0;
}

.join-form {
    max-width: 700px;
    margin: 0 auto;
}

.join-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.join-form-group {
    flex: 1;
}

.join-form-group.full-width {
    flex: 1 0 100%;
}

.join-form-label {
    display: block;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.captcha-group .join-form-label {
    display: inline-block;
    margin-bottom: 0;
    white-space: nowrap;
}

.captcha-input {
    flex: 1;
    max-width: 150px;
}

.captcha-image {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.captcha-img {
    width: 120px;
    height: 46px;
    border-radius: 6px;
    background-color: #ffffff;
    cursor: pointer;
    object-fit: cover;
}

.captcha-refresh {
    font-size: 13px;
    color: #ff6a12;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.captcha-refresh:hover {
    color: #ff5733;
}

.join-form-input {
    width: 100%;
    padding: 18px 16px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    background-color: #fff;
    color: #333333;
    transition: background-color 0.3s ease;
}

.join-form-input:focus {
    outline: none;
    background-color: #ffffff;
}

.join-form-input::placeholder {
    color: #999999;
}

.join-form-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    background-color: #fff;
    color: #999;
    cursor: pointer;
    transition: background-color 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23999999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.join-form-select:focus {
    outline: none;
    background-color: #ffffff;
}

.join-form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    background-color: #fff;
    color: #333333;
    resize: vertical;
    min-height: 100px;
    transition: background-color 0.3s ease;
}

.join-form-textarea:focus {
    outline: none;
    background-color: #ffffff;
}

.join-form-textarea::placeholder {
    color: #999999;
}

.join-form-btn {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    background-color: #ff5733;
    color: #ffffff;
    border: none;
    padding: 14px 48px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.join-form-btn:hover {
    background-color: #e84a25;
    transform: translateY(-2px);
}

/* ========== Join手機端自適應樣式 ========== */
@media screen and (max-width: 768px) {
    .join-section {
        padding: 60px 15px;
    }

    .join-title-en {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .join-title-zh {
        font-size: 20px;
        margin-bottom: 35px;
    }

    .join-form-row {
        flex-direction: column;
        gap: 15px;
    }

    .captcha-group {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .captcha-group .join-form-label {
        width: 100%;
        display: block;
        margin-bottom: 8px;
    }

    .captcha-input {
        max-width: 120px;
    }

    .captcha-img {
        width: 100px;
        height: 40px;
    }

    .join-form-input,
    .join-form-select {
        padding: 12px 14px;
        font-size: 13px;
    }

    .join-form-textarea {
        padding: 12px 14px;
        font-size: 13px;
        min-height: 80px;
    }

    .join-form-btn {
        padding: 12px 36px;
        font-size: 14px;
        margin-top: 25px;
    }
}

/* ========== Contact模塊樣式 ========== */
.contact-section {
    width: 100%;
}

.contact-banner {
    width: 100%;
    background: url('../images/lxban.jpg') center/cover no-repeat;
    position: relative;
    padding: 80px 20px;
}



.contact-banner-content {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-title-en {
    font-size: 32px;
    font-weight: bold;
    color: #ff6a12;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.contact-title-zh {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.contact-desc {
    font-size: 16px;
    color: #cccccc;
    margin: 0;
}

.contact-form-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.contact-form-group {
    flex: 1;
}

.contact-form-group.full-width {
    flex: 1 0 100%;
}

.contact-form-label {
    display: block;
    font-size: 14px;
    color: #333333;
    margin-bottom: 8px;
}

.contact-form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background-color: #f5f5f5;
    color: #333333;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form-input:focus {
    outline: none;
    border-color: #ff6a12;
    background-color: #ffffff;
}

.contact-form-input::placeholder {
    color: #999999;
}

.contact-form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background-color: #f5f5f5;
    color: #333333;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form-textarea:focus {
    outline: none;
    border-color: #ff6a12;
    background-color: #ffffff;
}

.contact-form-textarea::placeholder {
    color: #999999;
}

.contact-form .captcha-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form .captcha-group .contact-form-label {
    display: inline-block;
    margin-bottom: 0;
    white-space: nowrap;
}

.contact-form .captcha-input {
    flex: 1;
    max-width: 150px;
}

.contact-captcha-image {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-captcha-img {
    width: 120px;
    height: 46px;
    border-radius: 6px;
    background-color: #f5f5f5;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    object-fit: cover;
}

.contact-captcha-refresh {
    font-size: 13px;
    color: #ff6a12;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-captcha-refresh:hover {
    color: #ff5733;
}

.contact-form-btn {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    background-color: #ff5733;
    color: #ffffff;
    border: none;
    padding: 14px 48px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form-btn:hover {
    background-color: #e84a25;
    transform: translateY(-2px);
}

/* ========== Contact手機端自適應樣式 ========== */
@media screen and (max-width: 768px) {
    .contact-banner {
        padding: 60px 15px;
    }

    .contact-title-en {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .contact-title-zh {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .contact-desc {
        font-size: 14px;
    }

    .contact-form-container {
        padding: 40px 15px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-form .captcha-group {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .contact-form .captcha-group .contact-form-label {
        width: 100%;
        display: block;
        margin-bottom: 8px;
    }

    .contact-form .captcha-input {
        max-width: 120px;
    }

    .contact-captcha-img {
        width: 100px;
        height: 40px;
    }

    .contact-form-input {
        padding: 12px 14px;
        font-size: 13px;
    }

    .contact-form-textarea {
        padding: 12px 14px;
        font-size: 13px;
        min-height: 80px;
    }

    .contact-form-btn {
        padding: 12px 36px;
        font-size: 14px;
        margin-top: 25px;
    }
}

/* ========== Services業務模塊樣式 ========== */
.services-section {
    width: 100%;
    position: relative;
}

.services-banner {
    width: 100%;
    background: url('../images/ywban.jpg') center/cover no-repeat;
    position: relative;
    padding: 100px 20px 200px 20px;
}


.services-banner-content {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.services-title-en {
    font-size: 42px;
    font-weight: bold;
    color: #ff6a12;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.services-title-zh {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.services-desc {
    font-size: 16px;
    color: #cccccc;
    margin: 0;
}

.services-cards {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    top: -120px;
    z-index: 2;
}

.services-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.services-icon {
    width: 60px;
    height: 60px;
    background-color: #ff6b35;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.services-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.services-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #141b2d;
    margin: 0 0 15px 0;
    text-align: left;
}

.services-card-desc {
    font-size: 14px;
    color: #606060;
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

/* ========== Services手機端自適應樣式 ========== */
@media screen and (max-width: 1024px) {
    .services-cards {
        grid-template-columns: 1fr;
        top: -60px;
        gap: 25px;
    }

    .services-title-en {
        font-size: 32px;
    }

    .services-title-zh {
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {
    .services-banner {
        padding: 70px 15px 120px 15px;
    }

    .services-title-en {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .services-title-zh {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .services-desc {
        font-size: 14px;
    }

    .services-cards {
        top: -70px;
        gap: 20px;
    }

    .services-card {
        padding: 25px;
    }

    .services-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .services-icon img {
        width: 26px;
        height: 26px;
    }

    .services-card-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .services-card-desc {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* ========== Products產品矩陣模塊樣式 ========== */
.products-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #ffffff;
}

.products-container {
    max-width: 1350px;
    margin: 0 auto;
}

.products-title-en {
    font-size: 36px;
    font-weight: bold;
    color: #ff6a12;
    text-align: center;
    margin: 0 0 15px 0;
}

.products-title-zh {
    font-size: 36px;
    font-weight: bold;
    color: #141b2d;
    text-align: center;
    margin: 0 0 20px 0;
}

.products-desc {
    font-size: 16px;
    color: #606060;
    text-align: center;
    margin: 0 0 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.products-item {
    background-color: #ffffff;
    border-radius: 50%;
    width: 100%;
    aspect-ratio: 1;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.products-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.products-icon {
    width: 50px;
    height: 50px;
    background-color: #ff6b35;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    align-self: flex-end;
}

.products-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.products-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.products-title {
    font-size: 18px;
    font-weight: bold;
    color: #141b2d;
    text-align: center;
    margin: 0 0 12px 0;
}

.products-desc-item {
    font-size: 15px;
    color: #606060;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* ========== Products手機端自適應樣式 ========== */
@media screen and (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
}

@media screen and (max-width: 768px) {
    .products-section {
        padding: 60px 15px;
    }

    .products-title-en {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .products-title-zh {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .products-desc {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 50px;
       
    }

    .products-item {
        padding: 25px 20px;
         width: 70%;
                 margin: 0 auto;
    }

    .products-icon {
        width: 45px;
        height: 45px;
    }

    .products-icon img {
        width: 24px;
        height: 24px;
    }

    .products-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .products-desc-item {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* ========== 新聞詳情模塊樣式 ========== */
.news-detail-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #ffffff;
}

.news-detail-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.news-detail-main {
    flex: 1;
    min-width: 0;
}

.news-detail-title {
    font-size: 32px;
    font-weight: bold;
    color: #232323;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.news-detail-date {
    font-size: 16px;
    color: #8a8a8a;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.news-detail-content {
    font-size: 15px;
    color: #5e5e5e;
    line-height: 1.9;
}

.news-detail-content p {
    margin: 0 0 20px 0;
}

.news-detail-content p:last-child {
    margin-bottom: 0;
}

.news-detail-sidebar {
    width: 320px;
    flex-shrink: 0;
}

.news-search-box {
    position: relative;
    margin-bottom: 30px;
    background-color: #f7f7f7;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.news-search-input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    background-color: #f7f7f7;
    color: #333333;
    outline: none;
}

.news-search-input::placeholder {
    color: #999999;
}

.news-search-icon {
    position: absolute;
    right: 18px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.news-sidebar-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.news-sidebar-title-text {
    font-size: 18px;
    font-weight: bold;
    color: #141b2d;
    margin-right: 12px;
}

.news-sidebar-line {
    flex: 1;
    height: 4px;
    object-fit: cover;

}

.news-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-sidebar-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: stretch;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-sidebar-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.news-sidebar-img {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.news-sidebar-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.news-sidebar-item-title {
    font-size: 14px;
    font-weight: bold;
    color: #232323;
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-sidebar-item-date {
    font-size: 12px;
    color: #8a8a8a;
    margin-top: auto;
}

/* ========== 新聞詳情手機端自適應樣式 ========== */
@media screen and (max-width: 1024px) {
    .news-detail-container {
        flex-direction: column;
        gap: 50px;
    }

    .news-detail-sidebar {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .news-detail-section {
        padding: 40px 15px;
    }

    .news-detail-container {
        gap: 40px;
    }

    .news-detail-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .news-detail-date {
        font-size: 14px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .news-detail-content {
        font-size: 14px;
        line-height: 1.8;
    }

    .news-detail-content p {
        margin-bottom: 15px;
    }

    .news-search-box {
        margin-bottom: 25px;
    }

    .news-search-input {
        padding: 12px 45px 12px 15px;
        font-size: 13px;
    }

    .news-search-icon {
        right: 15px;
        width: 18px;
        height: 18px;
    }

    .news-sidebar-title-text {
        font-size: 16px;
    }

    .news-sidebar-img {
        width: 75px;
        height: 50px;
    }

    .news-sidebar-item-title {
        font-size: 13px;
    }
}