body {
    margin: 0;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    background: #f6f8fa;
}
.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 顶部菜单条 */
.top-nav {
    background: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
}
.top-nav nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 40px;
}
.top-nav nav ul li {
    margin-right: 30px;
}
.top-nav nav ul li.user-auth {
    margin-left: auto;
    margin-right: 0;
}
.top-nav nav ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}
.top-nav nav ul li a:hover {
    color: #0078ff;
    text-decoration: underline;
}

/* LOGO+搜索+按钮 */
.header-bar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img {
    height: 50px;
}
.search-box {
    flex: 1;
    margin: 0 40px;
}
.search-container {
    display: flex;
    align-items: center;
    background: #f2f4f8;
    border-radius: 22px;
    padding: 4px 10px;
}
.search-input {
    border: none;
    background: transparent;
    padding: 8px 12px;
    font-size: 16px;
    flex: 1;
    outline: none;
}
.btn-search {
    background: #0078ff;
    color: #fff;
    border: none;
    border-radius: 18px;
    padding: 6px 22px;
    font-size: 16px;
    cursor: pointer;
    margin-left: 8px;
    transition: background 0.2s;
}
.btn-search:hover {
    background: #005bb5;
}
.header-btns .btn {
    display: inline-block;
    margin-left: 12px;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 15px;
    text-decoration: none;
    color: #fff;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,120,255,0.08);
}
.header-btns .btn.free { background: #00c292; }
.header-btns .btn.pay { background: #ff9800; }
.header-btns .btn.join { background: #0078ff; }
.header-btns .btn:hover { box-shadow: 0 4px 16px rgba(0,120,255,0.15); opacity: 0.92; }

/* 主导航 */
.main-nav {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}
.nav-flex {
    display: flex;
    align-items: center;
}
.nav-category {
    position: relative;
    margin-right: 30px;
}
.category-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
}
.category-title {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #0078ff;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 6px 6px 0 0;
    background: #f2f4f8;
    transition: background 0.2s;
    position: relative;
    z-index: 12;
}
.category-title:focus {
    outline: none;
}
.category-list {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,120,255,0.10), 0 2px 8px rgba(0,0,0,0.06);
    border-radius: 0 0 12px 12px;
    min-width: 220px;
    z-index: 11;
    padding: 0;
    margin: 0;
    border-top: 1px solid #e5e5e5;
}
.nav-category:hover .category-list,
.nav-category:focus-within .category-list,
.category-list:hover {
    display: block;
}
.category-list li {
    display: flex;
    align-items: center;
    padding: 0 24px;
    height: 44px;
    transition: background 0.2s;
}
.category-list li a {
    flex: 1;
    color: #333;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
    font-size: 15px;
}
.category-list li:hover {
    background: #f2f4f8;
}
.category-list li a:hover {
    color: #0078ff;
}
.nav-menu {
    display: flex;
    flex: 1;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu li {
    margin-right: 28px;
    position: relative;
}
.nav-menu li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    padding: 12px 0;
    display: block;
    transition: color 0.2s;
    position: relative;
}
.nav-menu li a::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 3px;
    background: #0078ff;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s cubic-bezier(.4,0,.2,1);
    z-index: 2;
}
.nav-menu li a:hover::after,
.nav-menu li a:focus::after {
    transform: scaleX(1);
}
.nav-join {
    margin-left: auto;
}
.nav-join a {
    color: #fff;
    background: #0078ff;
    padding: 8px 22px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s;
}
.nav-join a:hover {
    background: #005bb5;
}

/* 幻灯片+公告，通知窗口宽度对齐 */
.banner-section {
    position: relative;
    width: 100%;
    min-width: 1200px;
    background: #e6f0ff;
    overflow: hidden;
    padding: 0;
}
.banner-slider {
    position: relative;
    width: 100%;
    min-width: unset;
    max-width: 100vw;
    height: 380px;
    overflow: hidden;
}
.banner-img {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    min-width: unset;
    max-width: 100vw;
    height: 380px;
    object-fit: cover;
    display: none;
    transition: opacity 0.6s;
    z-index: 1;
    opacity: 0;
}
.banner-img.active {
    display: block;
    opacity: 1;
    z-index: 2;
}
.banner-inner {
    width: 1200px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 0;
    height: 380px;
    z-index: 10;
    transform: translateX(-50%);
    pointer-events: none;
}
.notice-box {
    position: absolute;
    top: 40px;
    right: 20px;
    width: 320px;
    background: rgb(255 255 255 / 70%);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,120,255,0.10);
    padding: 22px 28px 18px 28px;
    z-index: 20;
    transition: box-shadow 0.2s, transform 0.2s;
    pointer-events: auto;
}
.notice-box:hover {
    box-shadow: 0 8px 32px rgba(0,120,255,0.18);
    transform: translateY(-4px) scale(1.03);
}
.notice-title {
    font-size: 18px;
    font-weight: bold;
    color: #0078ff;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.notice-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.notice-content li {
    margin-bottom: 10px;
}
.notice-content li a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}
.notice-content li a:hover {
    color: #ff9800;
    text-decoration: underline;
}

/* 项目分类图标区 */
.icon-category-section {
    background: #fff;
    padding: 36px 0 18px 0;
    border-bottom: 1px solid #e5e5e5;
}
.icon-category-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 1200px;
    margin: 0 auto;
    background: #fff;
}
.icon-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 10px;
    padding: 12px 0;
}
.icon-category-item svg {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    display: block;
}
.icon-category-item:hover {
    background: #f2f4f8;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 4px 16px rgba(0,120,255,0.08);
}
.icon-category-item:hover img {
    transform: scale(1.15) rotate(-8deg);
}
.icon-category-item div {
    font-size: 15px;
    color: #333;
    margin-top: 2px;
}

.icon-btn {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 6px;
}

.icon-menu {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    transition: background 0.2s;
}
.banner-arrow-left { left: 40px; }
.banner-arrow-right { right: 40px; }
.banner-arrow:hover { background: rgba(0,120,255,0.7); }

.banner-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 12px;
}
.banner-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s;
    border: 2px solid #0078ff;
}
.banner-dot.active {
    opacity: 1;
    background: #0078ff;
}

/* 子菜单图标样式 */
.submenu-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
    vertical-align: middle;
}

.latest-projects-section {
    background: #f6f6f6;
    padding: 40px 0 60px 0;
}
.latest-projects-box {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,120,255,0.06);
    width: 1200px;
    margin: 0 auto;
    padding: 32px 0 32px 0;
}
.latest-projects-title {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 22px;
    letter-spacing: 1px;
    color: #222;
    position: relative;
}
.latest-projects-en {
    font-size: 15px;
    color: #888;
    font-weight: normal;
    margin-left: 18px;
}
.latest-projects-more {
    position: absolute;
    right: 40px;
    top: 0;
    font-size: 15px;
    color: #888;
    text-decoration: none;
    font-weight: normal;
}
.latest-projects-list {
    display: flex;
    gap: 0;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.latest-projects-list-split .latest-projects-col {
    border-right: 1px solid #f0f0f0;
}
.latest-projects-list-split .latest-projects-col:last-child {
    border-right: none;
}
.latest-projects-col {
    flex: 1;
    min-width: 0;
}
.latest-projects-col ul {
    list-style: none;
    margin: 0;
    padding: 0 24px;
}
.latest-projects-col li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 15px;
    border-radius: 4px;
    padding: 4px 0;
    transition: background 0.2s;
    min-width: 0;
}
.latest-projects-col li:hover {
    background: #f6f8fa;
}
.latest-projects-col .price {
    color: #e53935;
    font-weight: bold;
    margin-right: 10px;
    min-width: 110px;
    text-align: right;
    font-size: 15px;
    text-decoration: none;
    flex-shrink: 0;
}
.latest-projects-col .project-title {
    color: #222;
    font-weight: 500;
    margin-right: 10px;
    text-decoration: none;
    flex: 1;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: font-size 0.2s;
}
.latest-projects-col li:hover .project-title {
    font-size: 15px;
    color: #0078ff;
}
.latest-projects-col li span {
    color: #999;
    font-size: 13px;
    min-width: 70px;
    text-align: right;
    flex-shrink: 0;
}
@media (max-width: 1300px) {
    .latest-projects-box, .icon-category-flex, .container {
        width: 100% !important;
        min-width: 0 !important;
        padding-left: 10px;
        padding-right: 10px;
    }
    .latest-projects-title {
        font-size: 20px;
    }
}
@media (max-width: 900px) {
    .latest-projects-list {
        flex-direction: column;
    }
    .latest-projects-list-split .latest-projects-col {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    .latest-projects-list-split .latest-projects-col:last-child {
        border-bottom: none;
    }
}
.solution-section {
    background: #fff;
    padding: 40px 0 60px 0;
    border-bottom: 1px solid #e5e5e5;
}
.solution-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
    letter-spacing: 1px;
}
.solution-en {
    font-size: 15px;
    color: #888;
    font-weight: normal;
    margin-left: 18px;
}
.solution-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 24px;
    list-style: none;
    padding: 0;
}
.solution-menu li {
    font-size: 16px;
    color: #333;
    cursor: pointer;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.solution-menu li.active,
.solution-menu li:hover {
    color: #0078ff;
    border-bottom: 2px solid #0078ff;
}
.solution-list {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow-x: unset;
}
.solution-item {
    flex: 1 1 calc(20% - 19.2px);
    max-width: calc(20% - 19.2px);
    min-width: 200px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,120,255,0.06);
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.solution-item:hover {
    box-shadow: 0 4px 24px rgba(0,120,255,0.12);
    transform: translateY(-4px) scale(1.03);
}
.solution-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.solution-info {
    padding: 16px 18px 12px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.solution-name {
    font-size: 17px;
    font-weight: bold;
    color: #222;
    margin-bottom: 8px;
}
.solution-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .solution-list {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    .solution-item {
        width: 95%;
    }
}

/* 统计板块样式 */
.stats-section {
    background: #fff;
    padding: 32px 0 0 0;
}
.stats-flex {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
}
.stats-item {
    flex: 1;
    text-align: center;
    padding: 0 0 18px 0;
    position: relative;
}
.stats-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #eee;
}
.stats-num {
    font-size: 22px;
    color: #444;
    font-weight: 500;
    margin-bottom: 6px;
}
.stats-label {
    font-size: 15px;
    color: #888;
}
@media (max-width: 900px) {
    .stats-flex {
        flex-direction: column;
        border-bottom: none;
    }
    .stats-item {
        border-bottom: 1px solid #eee;
        padding: 12px 0;
    }
    .stats-item:not(:last-child)::after {
        display: none;
    }
}

/* 优质服务商板块样式 */
.provider-section {
    background: #fafbfc;
    padding: 40px 0 60px 0;
}
.provider-flex {
    display: flex;
    gap: 24px;
    align-items: stretch;
}
.provider-list {
    flex: 0 0 75%;
    max-width: 75%;
    display: flex;
    gap: 18px;
}
.provider-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,120,255,0.06);
    border: 1px solid #f0f0f0;
    padding: 18px 12px 12px 12px;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.provider-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid #f2f4f8;
}
.provider-avatar-link {
    display: block;
}
.provider-name {
    color: #222;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 6px;
    text-align: center;
    transition: color 0.2s;
    display: block;
}
.provider-name:hover {
    color: #0078ff;
}
.provider-tags {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.tag {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    margin-right: 0;
    background: #ff9800;
    color: #fff;
    gap: 4px;
}
.tag-cert {
    background: #0078ff;
    color: #fff;
}
.tag-loc {
    background: #f2f4f8;
    color: #888;
}
.provider-desc {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin-top: 4px;
    line-height: 1.5;
}

.provider-side {
    max-width: 25%;
    background: linear-gradient(135deg, #ff6600 0%, #ff9800 100%);
    border-radius: 8px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 18px 24px 18px;
    box-shadow: 0 2px 12px rgba(255,152,0,0.10);
}
.provider-side-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 8px;
}
.provider-side-icons-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 18px;
    width: 100%;
}
.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
    color: #fff;
    gap: 6px;
    min-width: 60px;
}
.icon-item i {
    font-size: 26px;
    margin-bottom: 4px;
}
.icon-item span {
    font-size: 14px;
    margin-top: 2px;
    text-align: center;
}
.provider-side-btn {
    display: inline-block;
    background: #fff;
    color: #ff6600;
    border-radius: 20px;
    padding: 8px 28px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.provider-side-btn:hover {
    background: #ffe0b2;
    color: #d35400;
}
@media (max-width: 1100px) {
    .provider-flex {
        flex-direction: column;
        align-items: stretch;
    }
    .provider-side, .provider-list {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .provider-side {
        margin-top: 18px;
    }
    .provider-list {
        justify-content: center;
    }
    .provider-side-icons-row {
        flex-direction: row;
        gap: 18px;
    }
}

.icon-category-fa {
    font-size: 48px;
    margin-bottom: 10px;
    color: #0078ff;
    display: block;
}
.nav-menu i {
    font-size: 18px;
    margin-right: 6px;
    vertical-align: middle;
}
.category-title i {
    font-size: 20px;
    margin-right: 6px;
    vertical-align: middle;
}
.category-list i {
    font-size: 16px;
    margin-right: 6px;
    vertical-align: middle;
}

/* 优选好物区块样式 */
.goods-section {
    background: #fff;
    padding: 44px 0 60px 0;
    border-bottom: 1px solid #e5e5e5;
}
.goods-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 18px;
    color: #222;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.goods-title i {
    color: #ff9800;
    font-size: 28px;
    margin-right: 6px;
}
.goods-en {
    font-size: 15px;
    color: #888;
    font-weight: normal;
    margin-left: 16px;
}
.goods-list-row {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 24px;
}
.goods-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,120,255,0.06);
    border: 1px solid #f0f0f0;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    overflow: hidden;
    position: relative;
    padding: 12px 0 16px 0;
}
.goods-item:hover {
    box-shadow: 0 6px 24px rgba(0,120,255,0.13);
    transform: translateY(-4px) scale(1.03);
    z-index: 2;
}
.goods-item img {
    width: calc(100% - 24px);
    margin: 12px 12px 0 12px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    display: block;
}
.goods-info {
    padding: 18px 16px 10px 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
}
.goods-name {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
.goods-price {
    font-size: 15px;
    color: #e53935;
    font-weight: bold;
    margin-bottom: 4px;
}
.goods-old-price {
    font-size: 13px;
    color: #bbb;
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: normal;
}
.goods-desc {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 1300px) {
    .goods-list-row {
        gap: 12px;
    }
    .goods-item {
        width: 18vw;
        min-width: 150px;
    }
}
@media (max-width: 900px) {
    .goods-list-row {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    .goods-item {
        width: 95vw;
        min-width: 0;
    }
}

.latest-projects-title i {
    color: #ff9800;
    font-size: 26px;
    margin-right: 8px;
    vertical-align: middle;
}

.solution-title i {
    color: #0078ff;
    font-size: 28px;
    margin-right: 8px;
    vertical-align: middle;
}

.provider-main-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 28px;
    color: #222;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.provider-main-title i {
    color: #00c292;
    font-size: 30px;
    margin-right: 8px;
    vertical-align: middle;
}
.provider-en {
    font-size: 15px;
    color: #888;
    font-weight: normal;
    margin-left: 16px;
}

.site-footer {
    background: #393f4a;
    color: #bfc4cc;
    padding: 38px 0 28px 0;
    text-align: center;
    font-size: 15px;
    margin-top: 0;
}
.footer-links {
    margin-bottom: 16px;
}
.footer-links a {
    color: #bfc4cc;
    margin: 0 16px;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #ff9800;
    text-decoration: underline;
}
.footer-info,
.footer-contact {
    margin-bottom: 6px;
    font-size: 15px;
}
.footer-copyright {
    margin-top: 10px;
    font-size: 14px;
    color: #8e929a;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .site-footer {
        font-size: 13px;
        padding: 28px 0 18px 0;
    }
    .footer-links a {
        margin: 0 8px;
        font-size: 13px;
    }
}


.site-footer a { color: inherit; text-decoration: none; transition: none; }
.site-footer a:hover { color: inherit; text-decoration: underline; } 

.goods-section a,
.solution-section a {
    color: inherit !important;
    text-decoration: none !important;
    transition: none;
}
.goods-section a:hover,
.solution-section a:hover {
    color: inherit !important;
    text-decoration: none !important;
}