.ept-header {
    width: 100%;
    height: 68px;
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff00;
    transition: background-color .2s;
    z-index: 999;
}

.ept-header.scroll {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ept-header-container {
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ept-header .ept-header-container .nav {
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
}

.ept-header .ept-header-container .nav .item {
    width: fit-content;
    height: 100%;
    padding: 0 20px;
}

.header-item-link {
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 1em;
    cursor: pointer;
}

.toolbar {
    display: flex;
    align-items: center;
}

.text-console {
    font-size: 15px;
    font-weight: 500;
    line-height: 1em;
    margin-right: 26px;
}

.index-banner {
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
}

.index-banner-wrapper {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.5s ease;
}

.banner-item {
    width: 25%;
    height: 100%;
    position: relative;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: none;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 30%;
}

.banner-text h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.banner-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.bannercard {
    margin-top: -50px;
    background: linear-gradient(0deg, rgba(246, 251, 255, 1) 0%, rgba(237, 246, 255, 1) 100%);
}

.card-wrap {
    display: flex;
    justify-content: center;
}

.card-content {
    backdrop-filter: blur(15px);
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 5px 15px #8daaff1a;
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 10px;
    padding: 15px 28px;
    width: 100%;
}

.card-item {
    box-sizing: border-box;
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    width: 50%;
}

.card-item:nth-child(1)::after,
.card-item:nth-child(2)::after,
.card-item:nth-child(3)::after {
    content: "";
    width: 1px;
    height: 60%;
    background: #e5e7eb;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.card-item-img {
    width: 50px;
}

.card-item-text {
    padding-left: 10px;
}

.public-head {
    text-align: center;
    position: relative;
    padding-top: 47px;
    padding-bottom: 22px;
}

.public-letter {
    height: 80px;
    font-size: 80px;
    font-family: SourceHanSansCN-Heavy;
    font-weight: 800;
    color: rgba(238, 238, 238, 1);
    line-height: 80px;
    background: linear-gradient(180deg, rgba(237, 237, 237, 0.74) 0%, rgba(238, 238, 238, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 auto;
}

.public-title {
    position: absolute;
    top: 80px;
    left: 50%;
    font-size: 32px;
    margin-left: -200px;
    width: 400px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 600;
    color: rgba(51, 51, 51, 1);
    line-height: 32px;
}

.public-titp {
    text-align: center;
    color: #333333;
    font-size: 20px;
    line-height: 20px;
}

.index-core {
    background: linear-gradient(180deg, rgba(246, 251, 255, 1) 0%, rgba(237, 246, 255, 1) 100%);
}

.core-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.core-wrap {
    display: flex;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #fff;
    padding: 5px;
    position: relative;
}

.tab-active-bg {
    position: absolute;
    height: calc(100% - 10px);
    top: 5px;
    background: linear-gradient(90deg, rgba(83, 101, 255, 1) 0%, rgba(55, 156, 255, 1) 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 0;
}

.tab-item {
    padding: 10px 30px;
    opacity: 1;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.tab-item.active {
    color: #fff;
}

.core-content {
    background-image: url(../img/core-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.content-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    display: none;
}

.content-wrap.active {
    display: flex;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-left {
    flex: 1;
    min-width: 280px;
    padding: 24px 0;
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.3s ease;
}

.content-right {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.3s ease;
}

.content-wrap.active .content-left {
    opacity: 1;
    transform: translateX(0);
}

.content-wrap.active .content-right {
    opacity: 1;
    transform: translateX(0);
}

.content-right img {
    max-width: 100%;
    height: auto;
    display: block;
}

.content-title {
    font-size: 28px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
}

.content-desc {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
}

.left-title {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
}

.left-desc {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
}

.left-top {
    padding: 20px 0;
    border-bottom: 0.5px solid rgba(212, 223, 232, 1);
}

.left-button {
    padding: 20px 0;
}

.feature-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.grid-item {
    width: 100%;
}

.grid-item .item:hover {
    background: #f3f5f8;
    box-shadow: inset 8px 8px 20px rgba(55, 99, 170, .1), inset -8px -8px 20px #fff
}

.grid-item .item {
    background-image: linear-gradient(0deg, #fff, #f3f5f8);
    border: 2px solid #fff;
    box-shadow: 7px 8px 20px 0 rgb(55 99 170 / 10%), -8px -8px 20px 0 #fff;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    padding: 20px;
    align-items: center;
    height: 100%;
}

.grid-item .icon {
    width: 64px;
    height: 64px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top;
    margin-bottom: 10px;
}

.grid-item .text-content {
    flex: 1;
}

.grid-item .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.grid-item .desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.icon-enter {
    animation: entry-icon-enter .2s steps(9) forwards;
}

.icon-leave {
    animation: entry-icon-leave .2s steps(9) forwards;
}

@keyframes entry-icon-enter {
    0% {
        background-position-y: 0px;
    }

    to {
        background-position-y: -576px;
    }
}

@keyframes entry-icon-leave {
    0% {
        background-position-y: -576px;
    }

    to {
        background-position-y: 0px;
    }
}

.index-solutions {
    background: url(../img/solutions-bg.png);
    background-repeat: no-repeat;
    height: 600px;
    background-size: cover;
    background-position: center;
}

.solutions-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    margin-top: 50px;
}

.sol-left {
    width: 45%;
}

.sol-panel {
    display: none;
}

.sol-active-panel {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.sol-panel h3 {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

.sol-panel>p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
}

.sol-desc-list {
    margin: 20px 0;
}

.sol-desc-list p {
    font-size: 15px;
    color: #444;
    line-height: 2.2;
}

.sol-right {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sol-card {
    padding: 15px;
    cursor: pointer;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(229, 244, 255, 0.88) 0%, rgba(255, 255, 255, 0.88) 57.69%);
    border: 2px solid rgba(255, 255, 255, 1);
}

.sol-active-card,
.sol-card:hover {
    box-shadow: 0 10px 25px rgb(255 255 255 / 34%);
}

.sol-card-icon {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.sol-card-icon {
    background: url(../img/card-item1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.sol-card-tag {
    font-size: 14px;
    color: #5365ff;
    font-weight: 500;
    margin-bottom: 8px;
}

.sol-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.sol-card-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
}

.sol-card-item {
    display: flex;
    gap: 14px;
}



.sol-btn {
    display: flex;
    gap: 20px;
    padding-top: 20px;
}

.sol-btn button {
    padding: 10px 20px;
}

.sol-demo {
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(83, 101, 255, 1) 0%, rgba(55, 156, 255, 1) 100%);
    box-shadow: 0px 25px 50px -12px rgba(23, 74, 236, 0.1);
    color: #fff;
}

.sol-contact {
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0px 25px 50px -12px rgba(23, 74, 236, 0.1);
}

.cooperation_box {
    overflow: hidden;
    min-width: 800px;
    position: relative;
    padding: 30px 0;
}

.cooperate_left {
    left: 0;
    top: 0;
    transform: rotateZ(0deg);
}

.cooperate_right {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.cooperate_shadow {
    background-image: linear-gradient(to left, rgba(213, 232, 255, 0) 0%, #ffffff 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: calc(64px + 120px);
    z-index: 2;
}

.partner_box {
    display: flex;
    align-items: center;
    width: calc(100% + 220px);
    margin: 20px 0;
}

.moveLeftSlideshow {
    animation: moveLeftSlideshow 20s linear infinite;
}

.moveRightSlideshow {
    animation: moveRightSlideshow 20s linear infinite;
}

@keyframes moveLeftSlideshow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes moveRightSlideshow {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.product-item {
    width: 180px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid #f0f0f0;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s;
}

.index-partners {
    background: rgb(255 255 255);
}

.index-news {
    background: url(../img/news-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    height: 600px;
}

.news-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

.news-item {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 20px;
    border-radius: 10px;
    opacity: 0.9;
    border: 2px solid #fff;
}

.news-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.news-name {
    flex: 1;
}

.news-time {
    color: #999;
    font-size: 14px;
}

.footer {
    background: #0a1428;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 4px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-qrcode {
    display: flex;
    gap: 15px;
    margin: 5px 0;
}

.qrcode-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.qrcode-box {
    width: 88px;
    height: 88px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.qrcode-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-item {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.footer-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

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

.footer-list li {
    margin-bottom: 12px;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
}

.footer-links-row {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links-title {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.footer-links-list {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-decoration: none;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
}

.public-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.public-banner.price {
    background: url(../img/price-bg.png);
    background-repeat: no-repeat;
    height: 500px;
    background-size: cover;
    background-position: center;
}

.page-content {
    width: 100%;
    text-align: center;
}

.page-title {
    margin-bottom: 10px;
    font-size: 40px;
    font-weight: bold;
    color: #000000;
}

.page-sub {
    margin: 30px;
    font-size: 16px;
    color: #7c7c7c;
}

.page-text {
    font-size: 18px;
    color: #007bff;
}
.page-banner{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.page-banenr.introduction{
    background: url(../img/advantage-bg.png) no-repeat;
    background-position: top;
    background-size: cover;
    height: 600px;
}
.page-banenr.qualification{
    background: url(../img/bg-qualification.png) no-repeat;
    background-position: top;
    background-size: cover;
    height: 700px;
}
.price-version-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.price-tab-item {
    padding: 10px 25px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.price-tab-item.active {
    background: #409eff;
    color: #fff;
    border-color: #409eff;
}

.price-tab-item:hover {
    border-color: #409eff;
    color: #409eff;
}

.price-tab-item.active:hover {
    color: #fff;
}

.price-tab-content {
    display: none;
}

.price-tab-content.active {
    display: block;
}

.price-table-wrap {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    overflow-x: auto;
}

.price-compare-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #eee;
}

.price-compare-table th,
.price-compare-table td {
    border: 1px solid #eee;
    padding: 10px 8px;
    text-align: center;
    font-size: 14px;
    position: relative;
    cursor: default;
}

.price-compare-table .price-item-td {
    text-align: left;
    color: #555;
    width: 200px;
    text-align: center;
}

.price-compare-table .price-cate-td {
    font-weight: bold;
    color: #333;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: center;
    letter-spacing: 2px;
}

.price-compare-table thead th {
    background: #fff;
    color: #333;
}

.price-version-hot {
    background: #fff7f0;
}

.price-btn {
    display: inline-block;
    padding: 6px 15px;
    background: #409eff;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    transition: 0.2s;
}

.price-btn:hover {
    background: #337ecc;
}

.price-yes {
    display: inline-block;
    width: 26px;
    height: 26px;
    background: url(../img/price-price-yes.png) no-repeat;
    background-size: 100%;
}

.price-no {
    display: inline-block;
    width: 26px;
    height: 26px;
    background: url(../img/price-price-no.png) no-repeat;
    background-size: 100%;
}

.price-tips-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 6px;
    vertical-align: middle;
    background: url('/static/default/img/price_tips.png') no-repeat center;
    background-size: contain;
    cursor: pointer;
    position: relative;
}

.price-hover-tips {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 12px;
    background: #333;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 999;
    display: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.price-hover-tips::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-right: 6px solid #333;
    border-bottom: 4px solid transparent;
}


.ept-product-question-content {
    display: flex;
    flex-flow: wrap;
    width: 100%;
    padding: 20px 0;
}

.ept-product-question-card {
    padding: 8px;
    width: 50%;
}

.ept-product-question-card-inner {
    align-items: flex-start;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    transition: .3s;
    width: 100%;
    opacity: 0.8;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    border: 2px solid #fff;
}

.ept-product-question-card-inner h5 {
    font-size: 22px;
    margin-bottom: 0;
    font-weight: 700;
}

.ept-product-question-card-inner p {
    font-size: 20px;
    margin-bottom: 0;
}

.public-page-title {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
}

.public-page-title h2 {
    font-size: 36px;
    font-weight: 700;
}

.public-content-ask {
    background: url(../img/news-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.public-content-price {
    padding: 20px 0;
}

.public-banner.service {
    background: url(../img/service-bg.png);
    background-repeat: no-repeat;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.service-sort-wrap {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.service-sort-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 15px 0;
    margin: 0;
}

.service-sort-list::-webkit-scrollbar {
    display: none;
}

.service-sort-item {
    list-style: none;
}

.service-sort-item a {
    display: inline-block;
    padding: 8px 20px;
    color: #333;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.service-sort-item.service-active a {
    background: #0066ff;
    color: #fff;
}

.service-card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.service-card-unit {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
    min-width: 240px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s;
}

.service-card-unit:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card-unit a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card-pic {
    width: 100%;
    height: 160px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fa;
}

.service-card-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card-info {
    padding: 15px;
}

.service-card-name {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.service-card-txt {
    margin: 0 0 12px;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card-fee {
    font-size: 18px;
    color: #ff4d4f;
    font-weight: bold;
}

.service-card-fee span {
    font-size: 13px;
    color: #999;
    font-weight: normal;
}

.service-group-panel {
    display: none;
}

.service-group-panel.active {
    display: block;
}

.service-group-head {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.public-banner.serviceinfo {
    background: url(../img/service-bg.png);
    background-repeat: no-repeat;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.serviceinfo-wrap {
    padding: 30px 0;
}

.serviceinfo-row {
    display: flex;
    gap: 30px;
}

.serviceinfo-main {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
}

.serviceinfo-sidebar {
    width: 320px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
}

.serviceinfo-top {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.serviceinfo-img {
    width: 280px;
    height: 220px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.serviceinfo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.serviceinfo-info {
    flex: 1;
}

.serviceinfo-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px;
}

.serviceinfo-desc {
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px;
}

.serviceinfo-price-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.serviceinfo-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.serviceinfo-price-label {
    color: #666;
    font-size: 15px;
}

.serviceinfo-price-value {
    font-size: 32px;
    color: #ff4d4f;
    font-weight: bold;
}

.serviceinfo-price-unit {
    color: #ff4d4f;
    font-size: 15px;
}

.serviceinfo-price-tip {
    color: #999;
    font-size: 13px;
}

.serviceinfo-btn {
    display: inline-block;
    padding: 10px 30px;
    background: #fff;
    border: 1px solid #ff4d4f;
    color: #ff4d4f;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.serviceinfo-btn:hover {
    background: #ff4d4f;
    color: #fff;
}

.serviceinfo-content {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.serviceinfo-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px;
    padding-bottom: 10px;
}

.serviceinfo-content div {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #ff4d4f;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.sidebar-list-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.sidebar-list-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-list-item a {
    text-decoration: none;
    color: #333;
    display: block;
}

.sidebar-list-item h4 {
    font-size: 16px;
    margin: 0 0 8px;
    font-weight: 600;
}

.sidebar-list-item p {
    font-size: 13px;
    color: #afafaf;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    z-index: 9999;
    display: none;
}

.toast.success {
    background: rgba(82, 196, 26, 0.9);
}

.toast.error {
    background: rgba(255, 77, 79, 0.9);
}

.ept_buy {
    display: none;
    background-color: rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 100px 20%;
}

.ept_buy .content {
    background: #fff;
    margin: auto;
    box-shadow: 1px 1px 29px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 20px;
    max-width: 600px;
}

.ept_buy .content .title {
    text-align: center;
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
}

.ept_buy .content li {
    border-bottom: 1px solid #f1f1f1;
    padding: 16px 0;
    font-size: 14px;
    color: #8f9bb2;
    list-style: none;
}

.ept-textarea {
    height: 80px;
    width: 100%;
    border: 1px solid #e8e8e8;
    padding: 5px;
    font-size: 14px;
    resize: none;
    border-radius: 4px;
    margin-top: 5px;
}

.ept-textarea:focus {
    outline: none;
    border: 1px solid #c9ccd0;
}

.ept-input {
    width: 100%;
    border: 1px solid #e8e8e8;
    padding: 5px;
    font-size: 14px;
    resize: none;
    border-radius: 4px;
    margin-top: 5px;
}

.ept-input:focus {
    outline: none;
    border: 1px solid #c9ccd0;
}

.ept_buy .button-box {
    text-align: center;
    margin-top: 20px;
}

.ept_buy .button {
    padding: 10px 20px;
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    text-align: center;
    border-color: #fa9;
    color: #f53;
    background: #ffeae5;
    font-size: 14px;
    cursor: pointer;
    margin: 0 10px;
}

.ept_buy .button:hover {
    background-color: #ffd4cc;
}

.ept_buy .now-buy-qu {
    background: #ffffff;
    border-color: #ccc;
    color: #333;
}

.ept_buy .now-buy-qu:hover {
    background-color: #ffffff;
}


/*ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â½ÃƒÆ’Ã¢â‚¬Â¹ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¨ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢*/
.ept_content .doc-search {
    position: relative;
    margin-top: 30px;
}

.ept_content .check-input {
    display: inline-block;
    height: 60px;
    width: 100%;
    border: 1px solid #e9e9e9;
    padding: 0 20px;
    background: #fff;
    filter: alpha(opacity=50);
    background: #fff;
    vertical-align: top;
    border-radius: 5px;
    padding-right: 120px;
    font-size: 16px;
    box-shadow: 1px 1px 29px 0 rgba(0, 0, 0, 0.1);
}

.ept_content .check-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: none;
    height: 40px;
    color: #fff;
    right: 10px;
    width: 110px;
    background-color: #05f;
    -webkit-box-shadow: 0px 6px 12px 0px rgba(0, 85, 255, 0.2);
    box-shadow: 0px 6px 12px 0px rgba(0, 85, 255, 0.2);
    border-radius: 5px;
    cursor: pointer;
}

.ept_content .result-wrap {
    margin-top: 30px;
    min-height: 236px;
    background: #fff;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    background-color: #f1f5fa;
    border-radius: 5px;
    border: solid 1px #e9ecf2;
}

.ept_content .result-wrap .tip {
    padding-top: 40px;
}

.ept_content .result-wrap .tip .imgcenter {
    width: 100px;
    height: 100px;
    margin: 20px auto;
}

.public-banner.accredit {
    background: url(../img/accredit-bg.png) no-repeat;
    background-position: top;
    background-size: cover;
    height: 300px;
}

.ept-accredit-box {
    text-align: center;
    color: #fff;
}

.ept-accredit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    -webkit-box-shadow: 0px 2px 8px 0px rgba(64, 85, 127, 0.2);
    box-shadow: 0px 2px 8px 0px rgba(64, 85, 127, 0.2);
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-image: -webkit-linear-gradient(45deg, #00081a 0%, #fff 50%, #00081a 100%);
    background-image: -o-linear-gradient(45deg, #00081a 0%, #fff 50%, #00081a 100%);
    background-image: linear-gradient(45deg, #00081a 0%, #fff 50%, #00081a 100%);
    background-clip: content-box, padding-box;
    display: flex;
    align-items: center;
}

.ept_content {
    max-width: 1200px;
    margin: 90px auto;
}

.ept-auth-border-icon {
    height: 90px;
    width: 90px;
    border-radius: 10px;
    background-image: -webkit-linear-gradient(315deg, #000d27 0%, rgba(0, 30, 89, 0.8) 100%), -webkit-linear-gradient(#000, #000);
    background-image: -o-linear-gradient(315deg, #000d27 0%, rgba(0, 30, 89, 0.8) 100%), -o-linear-gradient(#000, #000);
    background-image: linear-gradient(135deg, #000d27 0%, rgba(0, 30, 89, 0.8) 100%), linear-gradient(#000, #000);
    background-blend-mode: normal, normal;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: auto;
}

.public-banner.news {
    background: url(../img/news-bg.png);
    background-repeat: no-repeat;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.news_bg {
    width: 100%;
    padding: 20px 0 80px;
    background: #f5f6f7;
}

.news_box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.news_left {
    width: 950px;
}

.newstype {
    width: 100%;
    height: 60px;
    background: #fff;
    border-radius: 8px 8px 0 0;
    padding: 12px;
    display: flex;
    justify-content: space-around;
}

.newstype .active {
    font-weight: 700;
}

.nav-icon {
    display: flex;
    position: relative;
    width: 26px;
}

.newstype .active .nav-icon:before {
    width: 12px;
    height: 12px;
    background: #0066ff;
    content: '';
    margin-right: 10px;
    transform: translateX(-50%) rotate(45deg);
}

.newstype .active .nav-icon:after {
    width: 12px;
    height: 12px;
    background: rgb(124 168 255 / 43%);
    content: '';
    margin-right: 10px;
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    left: 6px;
}

.article-list {
    width: 100%;
}

.article-card {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 8px;
    padding: 20px;
    background: #fff;
}

.article-image {
    width: 240px;
    height: 120px;
    background: #f5f6f7;
}

.article-image .pic {
    width: 100%;
    height: 100%;
}

.article-image img {
    height: 100%;
    width: 100%;
}

.article-content {
    flex: 1;
    padding-left: 20px;
    overflow: hidden;
}

.article-title {
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    line-height: 1em;
    color: #121212;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-excerpt {
    width: 100%;
    height: 2.8em;
    font-size: 14px;
    line-height: 1.4em;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 12px;
}

.pagination {
    display: flex;
    width: 40%;
    margin: 0 auto;
    margin-top: 50px;
}

.pagination li {
    padding: 10px;
    margin: 5px;
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
}

.pagination li.active {
    background-color: #0080ff;
    border: 1px solid #0080ff;
    color: #fff;
}

.news_right {
    width: 300px;
}

.aside-box {
    background: #fff;
    padding: 10px;
    border: var(--aside-box-border);
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.wdiget-title {
    position: relative;
    margin-bottom: 6px;
    padding-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 2px;
    border-bottom: none;
    padding-left: 40px;
}

.wdiget-title {
    position: relative;
    padding-left: 40px;
}

.wdiget-title:before,
.wdiget-title:after {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: 6px;
    content: '';
}

.wdiget-title:before {
    left: 20px;
    background: #fc625d;
}

.wdiget-title:after {
    left: 5px;
    background: #fdbc40;
}

.aside-box .center {
    width: 300px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aside-box .account-qrcode {
    width: 200px;
    height: 200px;
}

.account-qrcode img {
    width: 100%;
}

.article-meta {
    width: 100%;
    margin-top: 30px;
    display: flex;
}

.typeitem {
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.detail-container {
    padding: 30px 0;
    background: #fff;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detail-title {
    font-size: 24px;
    color: #333;
    margin: 0 20px 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
    text-align: center;
}

.detail-meta {
    color: #999;
    margin: 0 20px 20px;
    font-size: 14px;
    text-align: center;
}

.detail-meta span {
    margin: 0 10px;
}

.detail-content {
    line-height: 1.8;
    color: #555;
    padding: 0 20px 20px;
    font-size: 16px;
}

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

.detail-content img {
    max-width: 100%;
    height: auto;
    margin: 10px auto;
    display: block;
}

.notice-back {
    display: inline-block;
    margin: 0 20px 15px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
}

.notice-back:hover {
    color: #3498db;
}

.related-docs {
    margin: 30px 20px 0;
    padding-top: 20px;
    border-top: 1px solid #f5f5f5;
}

.related-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.related-list {
    list-style: none;
    padding: 0;
}

.related-list li {
    margin-bottom: 10px;
}

.related-list a {
    color: #555;
    text-decoration: none;
}

.related-list a:hover {
    color: #3498db;
    text-decoration: underline;
}

.public-doc {
    display: flex;
    width: 1280px;
    margin: 30px auto;
    gap: 20px;
    min-height: calc(100vh - 200px);
}

.public-doc-left {
    min-width: 200px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px 0;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-item {
    margin-bottom: 8px;
}

.category-item .title a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.category-item .title a.hover {
    background: #409eff;
    color: #fff;
}

.arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #666;
    border-right: 1px solid #666;
    transform: rotate(45deg);
    margin-right: 8px;
    transition: transform 0.3s;
}

.rotate-90 {
    transform: rotate(135deg);
}

.sub-category {
    display: none;
    padding-left: 50px;
    margin: 0;
    list-style: none;
}

.sub-category.expanded {
    display: block;
}

.sub-category li a {
    display: block;
    padding: 8px 0;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.sub-category li a.hover {
    color: #409eff;
    font-weight: 500;
}

.public-doc-right {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
}

.loading {
    display: none;
    text-align: center;
    padding: 50px 0;
}

.loading.active {
    display: block;
}

.loading img {
    width: 40px;
    height: 40px;
}

.public-doc-head {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.public-doc-title {
    font-size: 22px;
    color: #333;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.doc-update-time {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.public-doc-content {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.public-doc-content p {
    margin: 0 0 16px 0;
}

.public-doc-content img {
    max-width: 100%;
    border-radius: 4px;
    margin: 10px 0;
    cursor: pointer;
}

.img-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂªÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â */
.img-preview.active {
    display: flex;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â©ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¨ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã¢â‚¬Â¹ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â®ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â®ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ */
.preview-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â©ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¨ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã¢â‚¬Â¹ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂºÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ */
#previewImg {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â·ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã¢â‚¬Â¹ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â©ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â® */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.prev-btn {
    left: -70px;
}

.next-btn {
    right: -70px;
}

.nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.img-index {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 12px;
    border-radius: 20px;
}

.public-page-nav {
    width: 100%;
    height: 60px;
    background: #ffffff;
}

.public-banner.about {
    background: url(../img/about-bg.png) no-repeat;
    background-position: top;
    background-size: cover;
    height: 400px;
}


.contact-wrap {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 0 20px;
    margin: 20px 0;
}

.contact-card {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 20px;
}

.contact-text p {
    font-size: 18px;
    color: #666;
    margin: 10px 0;
}


.introduction-content {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
}

.introduction-top {
    font-size: 32px;
    font-weight: 700;
}

.introduction-left ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px 20px;
    margin: 48px 0 20px;
}

.introduction-left ul li span {
    display: block;
    font-size: 36px;
    margin-bottom: 8px;
    color: #000;
    font-weight: 600;
}

.introduction_bottom img {
    width: 100%;
    height: 213px;
}

.introduction-right {
    flex: 1;
    margin-left: 40px;
    padding: 40px;
    border-radius: 0;
    border: 1px solid #E6E9EC;
    box-shadow: 0px 2px 7px 0px #F2F5F7;
}

.introduction-right-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.introduction-right-title::after {
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    background: #06f;
    margin-top: 18px;
}

.introduction-right-content {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    text-align: justify;
}

.advantage-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 80px
}

.adv-item {
    padding: 35px 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s
}

.adv-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px)
}

.adv-item i {
    font-size: 45px;
    color: #4079ed;
    margin-bottom: 20px
}

.adv-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px
}

.adv-item p {
    color: #666;
    line-height: 1.9
}

.culture-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.culture-card {
    background: #fff;
    border-radius: 16px;
    padding: 45px 25px;
    text-align: center;
    border: 1px solid #f0f2f7;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.culture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(42, 82, 190, 0.1);
    border-color: #d3e0fc;
}

.culture-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.culture-card h4 {
    font-size: 22px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
}

.culture-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.9;
    margin: 0;
}

.contact-info {
    text-align: center;
    padding: 40px 0
}

.contact-info p {
    font-size: 16px;
    color: #555;
    margin: 12px 0
}

.cert-box {
    margin-bottom: 80px
}

.cert-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.cert-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s
}

.cert-item:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08)
}

.cert-item img {
    width: 100%;
    object-fit: cover;
    display: block
}

.img-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center
}

.img-preview img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px
}

.img-preview .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer
}

.currency-title h2 {
    color: #181818;
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 32px;
    padding-top: 40px;
}

.currency-title p {
    color: #181818;
    font-size: 20px;
    margin-bottom: 46px;
    opacity: .85;
}

.currency-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}


.ept-content-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 32px;
}

.ept-content-label {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ept-content-button {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ept-content-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
    padding: 40px 20px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.ept-content-item:hover {
    box-shadow: rgba(16, 36, 94, 0.4) 0px 2px 6px 0px;
}

.ept-content-item:hover .ept-content-button {
    height: 100%;
}

.cooperate-left {
    float: left;
    width: 70%;
    height: 100%;
    padding: 40px;
    border-right: 1px solid #dfe1e6;
}

.cooperate-title {
    font-size: 20px;
    font-weight: 600;
    color: #252b3a;
    line-height: 26px;
}

.cooperate-label {
    margin-top: 40px;
    font-size: 16px;
    color: #575D6C;
    line-height: 20px;
}

.cooperate-phone {
    margin-top: 8px;
}

.phone-num a {
    font-size: 20px;
    color: #0008ff;
    line-height: 30px;
    font-weight: bold;
}

.cooperate-desc {
    margin: 10px 0;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #575d6c;
}

.cooperate-right {
    width: 30%;
    margin-top: 8px;
    height: 100%;
    padding: 40px;
    float: left;
}

.cooperate-box {
    height: 248px;
    background: #fff;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
    margin-top: 60px;
}

.cooperate-btn {
    margin-top: -70px;
    margin-left: 143px;
}

.cooperate-contentbtn {
    border: 1px solid #0008ff;
    color: #0008ff;
    border-radius: 2px;
    padding: 10px 27px;
    cursor: pointer;
}

.public-login {
    width: 100%;
    min-height: 100vh;
    background: url("../img/bg-userlogin.png");
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 280px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.login-main {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: linear-gradient(180deg, rgb(222 242 255 / 70%) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 1);
}

.login-title {
    text-align: center;
    font-size: 32px;
    color: #333333;
    margin-bottom: 40px;
    font-weight: 500;
}

.login-tab {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.login-tab-item {
    flex: 1;
    text-align: center;
    font-size: 16px;
    color: #666;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.login-tab-item.active {
    color: #6c7bff;
    font-weight: 500;
}

.login-tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #6c7bff;
}

.login-input-wrap {
    margin-bottom: 20px;
    position: relative;
}

.login-input {
    width: 100%;
    height: 56px;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 0 110px 0 20px;
    font-size: 16px;
    color: #333;
    background: #f8faff;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.login-input:focus {
    border-color: #6c7bff;
}

.login-input::placeholder {
    color: #999;
}

.get-code-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 94px;
    height: 44px;
    background: linear-gradient(90deg, #9b88ff 0%, #6c7bff 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.get-code-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.login-option-bar {
    display: flex;
    justify-content: space-between;
    margin: 15px 0 30px;
    font-size: 14px;
}

.login-option-bar a {
    color: #6c7bff;
    text-decoration: none;
}

.login-btn {
    width: 100%;
    height: 56px;
    background: linear-gradient(90deg, #9b88ff 0%, #6c7bff 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.login-agree {
    margin: 20px 0 40px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.login-agree input {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

.login-agree a {
    color: #6c7bff;
    text-decoration: none;
}

.other-login-title {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
    position: relative;
}

.other-login-title::before,
.other-login-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #eee;
}

.other-login-title::before {
    left: 0;
}

.other-login-title::after {
    right: 0;
}

.other-login-list {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.other-login-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8faff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    pointer-events: none;
    cursor: default;
}

.other-login-item:hover {
    background: #e6eaff;
}

.other-login-item img {
    width: 30px;
    height: 30px;
}

.login-form {
    display: none;
}

.login-form.active {
    display: block;
}

.captcha-img {
    width: 400px;
    height: 45px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #eee;
}

.captcha-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.get-code-btn.disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
}
