html,
body {
    width: 100%;
    min-height: 100%;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #333;
    background: #f3f5f9;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font: 14px/1.7 "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all .25s ease;
    outline: none;
}

a:hover,
a:focus,
a:active {
    color: inherit;
    text-decoration: none;
    outline: none;
}

button,
input,
textarea,
select {
    outline: none;
}

button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: none;
}

ul,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
p {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.site-page *:focus {
    outline: none !important;
    box-shadow: none !important;
}

.site-page {
    min-height: 100vh;
}

.home-container {
    width: 1180px;
    max-width: 100%;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #e8ecf3;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 18px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2d2f76;
    white-space: nowrap;
}

.site-brand__logo {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #513fca, #945ef5);
    color: #fff;
    font-size: 19px;
    font-weight: 700;
}

.site-brand__image {
    width: 34px;
    height: 34px;
    display: block;
    object-fit: contain;
}

.site-brand__text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #3d4350;
    font-size: 14px;
}

.site-nav a {
    position: relative;
    padding: 6px 0;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: #6557e6;
}

.site-nav a.is-active:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18px;
    height: 3px;
    border-radius: 999px;
    background: #6557e6;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.site-header__login-btn,
.site-header__register-btn {
    height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.site-header__login-btn {
    border: 1px solid #cfd8ed;
    background: #fff;
    color: #4f5f86;
}

.site-header__login-btn:hover {
    border-color: #6a75ff;
    color: #4f5fff;
}

.site-header__register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4d67ff, #7b4dff);
    color: #fff;
    box-shadow: 0 10px 22px rgba(91, 92, 255, .22);
}

.site-header__register-btn:hover {
    color: #fff;
    transform: translateY(-1px);
}

.site-user-menu {
    position: relative;
}

.site-user-menu__trigger {
    gap: 8px;
    min-width: 120px;
}

.site-user-menu__trigger .fa {
    font-size: 14px;
    transition: transform .2s ease;
}

.site-user-menu__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 168px;
    padding: 8px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e7ecf5;
    box-shadow: 0 18px 36px rgba(31, 43, 70, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s ease;
    z-index: 20;
}

.site-user-menu:hover .site-user-menu__dropdown,
.site-user-menu:focus-within .site-user-menu__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-user-menu:hover .site-user-menu__trigger .fa,
.site-user-menu:focus-within .site-user-menu__trigger .fa {
    transform: rotate(180deg);
}

.site-user-menu__item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #49556f;
    font-size: 14px;
    line-height: 1.4;
}

.site-user-menu__item:hover {
    background: #f5f8ff;
    color: #4d67ff;
}

.site-user-menu__logout-form {
    margin: 0;
}

.site-user-menu__logout-btn {
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.site-contact {
    text-align: center;
    color: #7d8496;
    white-space: nowrap;
}

.site-contact__phone {
    color: #7d4ac7;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}

.site-contact__time {
    margin-top: 4px;
    font-size: 12px;
}

.site-main {
    padding:0  0 20px 0;
    overflow: hidden;
}

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 18px;
    width: 100%;
    margin: 0 auto 18px;
    position: relative;
}

.site-banner-wrap {
    width: 100vw;
    overflow: hidden;
    position: relative;
    margin:0 auto;
}

.site-banner-carousel,
.site-banner-carousel .carousel-inner,
.site-banner-carousel .item {
    width: 100%;
    height: 380px;
    min-height: 380px;
}

.hero-banner {
    position: relative;
    overflow: hidden;
    height: 380px;
    min-height: 380px;
    background-color: #d9ecff;
    background-image: linear-gradient(135deg, #f5fbff 0%, #d9ecff 45%, #eef4ff 100%);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #dbe8fa;
    display: flex;
    justify-content: space-between;
    padding: 34px 36px;
}

.site-banner {
    width: 100%;
    min-width: 1920px;
    border-radius: 0;
}

.site-banner-carousel .carousel-indicators {
    bottom: 20px;
    z-index: 3;
}

.site-banner-carousel .carousel-indicators li {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border: 0;
    background: rgba(255, 255, 255, .45);
}

.site-banner-carousel .carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #fff;
}

.site-banner-carousel .carousel-control {
    width: 58px;
    background: none;
    opacity: 0;
    text-shadow: none;
    transition: opacity .25s ease;
}

.site-banner-wrap:hover .carousel-control {
    opacity: 1;
}

.site-banner-carousel .carousel-control .fa {
    position: absolute;
    top: 50%;
    margin-top: -26px;
    width: 52px;
    height: 52px;
    line-height: 52px;
    border-radius: 50%;
    background: rgba(26, 42, 84, .28);
    color: #fff;
    font-size: 34px;
}

.site-banner-carousel .left.carousel-control .fa {
    left: 18px;
}

.site-banner-carousel .right.carousel-control .fa {
    right: 18px;
}

.hero-banner:before,
.hero-banner:after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.hero-banner:before {
    width: 360px;
    height: 360px;
    right: -90px;
    top: -120px;
    background: radial-gradient(circle, rgba(131, 182, 255, .38) 0%, rgba(131, 182, 255, 0) 68%);
}

.hero-banner:after {
    width: 440px;
    height: 200px;
    left: 60px;
    bottom: -110px;
    background: radial-gradient(circle, rgba(82, 154, 247, .25) 0%, rgba(82, 154, 247, 0) 70%);
}

.hero-banner__content {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.hero-banner__badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    color: #335fc4;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(77, 124, 213, .18);
    font-size: 13px;
    margin-bottom: 14px;
}

.hero-banner h1 {
    margin-bottom: 14px;
    color: #2d3342;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 700;
}

.hero-banner p {
    color: #5f6b85;
    font-size: 18px;
    margin-bottom: 18px;
}

.hero-banner__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.hero-banner__tags span {
    padding: 6px 14px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #377af7, #8356ea);
    box-shadow: 0 8px 20px rgba(91, 107, 235, .16);
    font-size: 13px;
}

.hero-banner__link {
    color: #39465f;
    font-size: 16px;
}

.hero-banner__visual {
    position: relative;
    width: 260px;
    flex: 0 0 260px;
    z-index: 1;
}

.hero-banner__orb,
.hero-banner__ring {
    position: absolute;
    border-radius: 50%;
}

.hero-banner__orb {
    width: 170px;
    height: 170px;
    right: 40px;
    top: 28px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .95), rgba(113, 170, 255, .85) 36%, rgba(59, 117, 235, .12) 68%, rgba(59, 117, 235, .04) 100%);
    box-shadow: 0 20px 50px rgba(68, 113, 222, .18);
}

.hero-banner__ring {
    width: 216px;
    height: 216px;
    right: 16px;
    top: 6px;
    border: 18px solid rgba(120, 169, 255, .18);
    box-shadow: inset 0 0 30px rgba(255, 255, 255, .65);
}

.hero-banner__label {
    position: absolute;
    right: 77px;
    top: 70px;
    color: #fff;
    font-size: 70px;
    font-weight: 700;
    text-shadow: 0 10px 28px rgba(63, 111, 222, .34);
}

.login-panel {
    background: #fff;
    border: 1px solid #dfe6f0;
    border-radius: 6px;
    overflow: hidden;
    position: absolute;
    top:10px;
    right:9%;
    width:280px;
}

.login-panel__tabs {
    padding: 14px;
    background: #f7f9fc;
}

.login-panel__tab,
.login-panel__tabs a {
    display: block;
    width: 100%;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #6d79ff, #6780ec);
    border: 0;
}

.login-panel__tab.is-active,
.login-panel__tabs a.is-active {
    background: linear-gradient(135deg, #6d79ff, #6780ec);
}

.login-panel__tabs a + a,
.login-panel__tab + a {
    margin-bottom: 0;
    background: linear-gradient(135deg, #ff8b82, #ff6d6d);
}

.login-panel__body {
    padding: 16px 18px 18px;
}

.login-panel__title {
    color: #444d60;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.login-panel__list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #e7edf6;
    color: #5f6779;
}

.login-panel__list li:last-child {
    border-bottom: 0;
}

body.is-login-picker-open {
    overflow: hidden;
}

.login-picker {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.login-picker__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 21, 38, .45);
}

.login-picker__dialog {
    position: relative;
    width: 880px;
    max-width: calc(100vw - 32px);
    margin: 8vh auto 0;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 18px 50px rgba(18, 26, 46, .28);
    overflow: hidden;
}

.login-picker__close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(48, 63, 106, .08);
    color: #6d7487;
    font-size: 22px;
    line-height: 34px;
    text-align: center;
}

.login-picker__body {
    padding: 56px 38px 36px;
}

.login-picker__title {
    margin-bottom: 34px;
    color: #2f3748;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.login-picker__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.login-picker__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 20px 20px 8px;
    color: #3f434b;
}

.login-picker__icon {
    width: 180px;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(180deg, #76b5f0, #6fadef);
    color: #0f83f4;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
}

.login-picker__icon .fa {
    font-size: 92px;
}

.login-picker__label {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.login-picker__item:hover {
    color: #2f3748;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .login-picker__dialog {
        margin-top: 6vh;
    }

    .login-picker__grid {
        gap: 24px;
    }

    .login-picker__icon {
        width: 100%;
        max-width: 260px;
        height: 180px;
    }
}

@media (max-width: 767px) {
    .login-picker__body {
        padding: 52px 18px 24px;
    }

    .login-picker__title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .login-picker__grid {
        grid-template-columns: 1fr;
    }

    .login-picker__label {
        font-size: 22px;
    }
}

.search-panel {
    margin-bottom: 18px;
    padding: 18px 24px 14px;
    background: #fff;
    border: 1px solid #e0e6f0;
    border-radius: 6px;
}

.search-panel__box {
    display: flex;
    margin-bottom: 14px;
}

.search-panel__box input {
    flex: 1;
    height: 46px;
    padding: 0 16px;
    border: 1px solid #d8dfec;
    border-right: 0;
    border-radius: 4px 0 0 4px;
    outline: none;
    background: #fff;
}

.search-panel__box button {
    width: 110px;
    border: 0;
    color: #fff;
    font-size: 15px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(135deg, #7e5ef0, #a44bdd);
}

.keyword-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    color: #717b8f;
}

.keyword-label {
    color: #586174;
    font-weight: 700;
}

.keyword-row a {
    color: #5b6476;
}

.keyword-row a.is-hot {
    color: #ff9a2e;
}

.content-card {
    background: #fff;
    border: 1px solid #e0e6f0;
    border-radius: 6px;
}

.notice-list-card {
    margin-bottom: 18px;
    padding: 10px 22px 18px;
}

.notice-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 0;
    border-bottom: 1px dashed #edf1f6;
}

.notice-item:last-child {
    border-bottom: 0;
}

.notice-item__title {
    position: relative;
    flex: 1;
    min-width: 0;
    color: #434c5d;
    padding-left: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-item__title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-radius: 50%;
    background: #7b61f0;
}

.notice-item__date {
    flex: 0 0 100px;
    color: #8b95a8;
    text-align: right;
}

.notice-list__more {
    padding-top: 14px;
    text-align: center;
}

.notice-list__more a {
    display: inline-block;
    min-width: 94px;
    padding: 7px 18px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #7a63ee, #9d55e5);
}

.mid-banner {
    margin-bottom: 18px;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg, #0e68cf, #4e45c7 55%, #643fd9);
    box-shadow: 0 15px 30px rgba(49, 74, 176, .12);
}

.mid-banner__inner {
    position: relative;
    min-height: 96px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: #fff;
}

.mid-banner__inner:after {
    content: "";
    position: absolute;
    right: 40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, 0) 70%);
}

.mid-banner__title {
    font-size: 28px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.mid-banner__desc {
    position: relative;
    z-index: 1;
    font-size: 18px;
    opacity: .95;
}

.info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 18px;
}

.info-grid--full {
    grid-template-columns: minmax(0, 1fr);
}

.news-card {
    padding: 18px 24px 12px;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.section-heading h2 {
    font-size: 22px;
    color: #2f3645;
}

.section-heading a {
    color: #76819a;
}

.news-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px dashed #edf1f6;
}

.news-list li:last-child {
    border-bottom: 0;
}

.news-list a {
    position: relative;
    flex: 1;
    min-width: 0;
    color: #475062;
    padding-left: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-list a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    margin-top: -2px;
    border-radius: 50%;
    background: #f6a133;
}

.news-list span {
    color: #9aa4b6;
    white-space: nowrap;
}

.policy-card {
    padding: 22px 28px 16px;
}

.policy-card__heading {
    margin-bottom: 18px;
}

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

.policy-timeline__item {
    position: relative;
    padding: 0 0 14px;
    border-bottom: 0;
}

.policy-timeline__content,
.policy-timeline__item--empty {
    position: relative;
    display: block;
    min-height: 0;
    padding: 0 0 0 40px;
    color: inherit;
}

.policy-timeline__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.policy-timeline__dot {
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #f6b400;
}

.policy-timeline__line {
    position: absolute;
    left: 7px;
    top: 22px;
    bottom: -2px;
    width: 2px;
    background: #e7ebf3;
}

.policy-timeline__item:last-child {
    padding-bottom: 0;
}

.policy-timeline__item:last-child .policy-timeline__line {
    display: none;
}

.policy-timeline__title {
    display: block;
    flex: 1;
    min-width: 0;
    color: inherit;
    font: inherit;
    line-height: 1.6;
    word-break: break-word;
    white-space: normal;
}

.policy-timeline__date {
    display: block;
    flex: 0 0 118px;
    width: 118px;
    margin-top: 0;
    padding-left: 12px;
    color: inherit;
    font: inherit;
    line-height: 1.6;
    white-space: nowrap;
    text-align: right;
}

.policy-timeline__content .policy-timeline__title {
    color: #475062;
}

.policy-timeline__content .policy-timeline__date {
    color: #9aa4b6;
}

.policy-timeline__item--empty .policy-timeline__title {
    color: #475062;
}

.side-panels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side-panels--banners {
    gap: 12px;
}

.side-banner-card {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e6ebf3;
    box-shadow: 0 8px 22px rgba(53, 72, 110, .06);
}

.side-banner-card img {
    display: block;
    width: 100%;
    height: auto;
}

.side-banner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(53, 72, 110, .12);
}

.side-card {
    padding: 22px 20px;
    border-radius: 6px;
    color: #fff;
    overflow: hidden;
}

.side-card h3 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.side-card p {
    font-size: 15px;
    line-height: 1.9;
    opacity: .95;
}

.side-card--primary {
    min-height: 210px;
    background: linear-gradient(180deg, #57bcff, #3e86ff);
}

.side-card--tools {
    background: linear-gradient(180deg, #59b8ff, #2e8af1);
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.tool-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    border-radius: 6px;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .16);
}

.side-card--system {
    min-height: 154px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #3559cf, #2241a8);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
}

.site-footer {
    background: #232a34;
    color: rgba(255, 255, 255, .72);
    margin-top: 26px;
}

.site-footer__top {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding: 34px 0 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

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

.site-footer__links dt {
    color: #fff;
    font-size: 15px;
    margin-bottom: 14px;
}

.site-footer__links dd {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .68);
}

.site-footer__links a:hover {
    color: #fff;
}

.site-footer__qrcode {
    width: 120px;
    text-align: center;
}

.site-footer__qrcode img {
    width: 98px;
    height: 98px;
    padding: 6px;
    background: #fff;
    border-radius: 4px;
}

.site-footer__qrcode p {
    margin-top: 10px;
    font-size: 12px;
}

.site-footer__bottom {
    padding: 16px 0 20px;
    text-align: center;
    font-size: 13px;
}

.site-footer__bottom p + p {
    margin-top: 6px;
}

.site-footer__bottom a {
    color: rgba(255, 255, 255, .78);
}

@media (max-width: 1199px) {
    .home-container {
        width: auto;
    }

    .hero-section,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero-banner {
        min-height: 260px;
    }

    .login-panel {
        order: 2;
    }
}

@media (max-width: 991px) {
    .site-header__inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 16px 0;
    }

    .site-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 16px;
    }

    .site-contact {
        text-align: center;
    }

    .hero-banner {
        padding: 28px 24px;
    }

    .hero-banner h1 {
        font-size: 32px;
    }

    .hero-banner p,
    .mid-banner__desc {
        font-size: 16px;
    }

    .hero-banner__visual {
        display: none;
    }

    .site-footer__top,
    .site-footer__links {
        display: block;
    }

    .site-footer__links dl {
        margin-bottom: 18px;
    }

    .site-footer__qrcode {
        margin: 12px auto 0;
    }
}

@media (max-width: 767px) {
    .site-main {
        padding-top: 14px;
    }

    .hero-banner,
    .search-panel,
    .notice-list-card,
    .news-card,
    .side-card {
        border-radius: 4px;
    }

    .policy-card {
        padding: 16px 16px 12px;
    }

    .policy-card__heading {
        margin-bottom: 14px;
    }

    .policy-timeline__content,
    .policy-timeline__item--empty {
        padding-left: 28px;
    }

    .policy-timeline__meta {
        display: block;
    }

    .policy-timeline__dot {
        width: 12px;
        height: 12px;
        top: 6px;
    }

    .policy-timeline__line {
        left: 5px;
        top: 18px;
    }

    .policy-timeline__title {
        line-height: 1.6;
    }

    .policy-timeline__date {
        margin-top: 2px;
        padding-left: 0;
        line-height: 1.5;
        text-align: left;
    }

    .hero-banner h1 {
        font-size: 26px;
    }

    .hero-banner p,
    .hero-banner__link,
    .mid-banner__desc {
        font-size: 14px;
    }

    .search-panel {
        padding: 14px;
    }

    .search-panel__box {
        display: block;
    }

    .search-panel__box input {
        width: 100%;
        border-right: 1px solid #d8dfec;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .search-panel__box button {
        width: 100%;
        height: 42px;
        border-radius: 4px;
    }

    .notice-item,
    .news-list li {
        display: block;
    }

    .notice-item__title,
    .news-list a {
        white-space: normal;
        padding-right: 0;
    }

    .notice-item__date,
    .news-list span {
        display: block;
        margin-top: 6px;
        text-align: left;
    }

    .mid-banner__inner {
        display: block;
        padding: 20px;
    }

    .mid-banner__desc {
        margin-top: 8px;
    }

    .site-footer__top {
        padding: 24px 0 20px;
    }

    .site-footer__bottom {
        font-size: 12px;
    }

    .news-page-search {
        width: 100%;
        flex: 1 1 100%;
        min-width: 0;
        margin-left: 0;
    }

    .news-page-search input,
    .news-page-search--trade input {
        flex: 1 1 auto;
        min-width: 0;
        width: 100%;
        max-width: none;
    }

    .news-page-search button {
        flex: 0 0 88px;
    }
}

.site-main--news {
    padding-bottom: 48px;
}

.news-page-card {
    margin-top: 18px;
    background: #fff;
    border: 1px solid #eceff5;
    box-shadow: 0 10px 28px rgba(53, 72, 110, .05);
}

.news-page-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 14px 18px;
    padding: 16px 22px;
    border-bottom: 1px solid #f0f2f7;
}

.news-page-tab {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 7px 18px;
    border-radius: 999px;
    background: #fff;
    color: #666;
    white-space: nowrap;
}

.news-page-tab.is-active {
    background: linear-gradient(135deg, #c46ae5, #8c59df);
    color: #fff;
}

.news-page-search {
    margin-left: auto;
    display: flex;
    flex: 1 1 320px;
    align-items: center;
    justify-content: flex-end;
    min-width: 280px;
}

.news-page-search input {
    width: min(360px, calc(100% - 88px));
    height: 36px;
    padding: 0 12px;
    border: 1px solid #eceef4;
    border-right: 0;
    color: #666;
}

.news-page-search button {
    min-width: 88px;
    height: 36px;
    padding: 0 18px;
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, #c46ae5, #8c59df);
    white-space: nowrap;
}

.news-page-categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid #f3f5f9;
}

.news-page-categories__label {
    color: #333;
    font-weight: 700;
}

.news-page-category {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    color: #666;
}

.news-page-category.is-active {
    background: #ffb84a;
    color: #fff;
}

.news-page-list {
    padding: 0 22px;
}

.news-page-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 66px;
    border-bottom: 1px solid #f3f5f9;
    color: #333;
}

.news-page-categories.is-hidden {
    display: none;
}

.news-page-list.is-no-category {
    padding-top: 0;
    margin-top: -8px;
}

.news-page-item:hover .news-page-item__title {
    color: #8c59df;
}

.news-page-item__title {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-page-item__date {
    color: #9aa3b2;
    white-space: nowrap;
}

.news-page-empty {
    padding: 40px 0;
    color: #999;
    text-align: center;
}

.news-page-pagination {
    padding: 26px 0 18px;
    text-align: center;
}

.news-page-pagination .pagination {
    margin: 0;
}

.news-detail-card {
    margin-top: 18px;
    background: #fff;
    border: 1px solid #eceff5;
    padding: 28px 32px;
    box-shadow: 0 10px 28px rgba(53, 72, 110, .05);
}

.news-detail__meta {
    display: flex;
    gap: 18px;
    color: #8b95a7;
    font-size: 13px;
    margin-bottom: 14px;
}

.news-detail__title {
    margin: 0 0 18px;
    font-size: 30px;
    color: #2d3342;
    font-weight: 700;
    line-height: 1.4;
}

.news-detail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.news-detail__tags span {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: #f5f6fa;
    color: #5e6a82;
}

.news-detail__content {
    color: #4d586f;
    line-height: 1.9;
    font-size: 15px;
}

.news-detail__attachments {
    margin-top: 34px;
}

.news-detail__attachments-title {
    margin-bottom: 12px;
    color: #2f3542;
    font-size: 15px;
    font-weight: 500;
}

.news-detail__attachments-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
    border: 1px solid #edf0f5;
}

.news-detail__attachments-table th,
.news-detail__attachments-table td {
    padding: 18px 18px;
    border: 1px solid #edf0f5;
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
    color: #4c5566;
}

.news-detail__attachments-table th {
    background: #fafbfd;
    color: #6a7385;
    font-weight: 600;
}

.news-detail__attachments-table th:first-child,
.news-detail__attachments-table td:first-child {
    width: 78%;
}

.news-detail__attachments-table th:last-child,
.news-detail__attachments-table td:last-child {
    width: 22%;
}

.news-detail__attachment-name {
    color: #4a5365;
    line-height: 1.7;
    word-break: break-all;
}

.news-detail__attachment-meta {
    margin-top: 4px;
    color: #9aa3b2;
    font-size: 12px;
}

.news-detail__attachment-action {
    text-align: center;
}

.news-detail__download-btn {
    display: inline-block;
    min-width: 68px;
    padding: 7px 16px;
    border: 1px solid #dcdfe6;
    border-radius: 2px;
    background: #fff;
    color: #666f80;
    text-align: center;
    font-size: 13px;
}

.news-detail__download-btn:hover {
    border-color: #7266f0;
    color: #7266f0;
    background: #f8f7ff;
}

.site-main--portal-page {
    padding-bottom: 54px;
}

.portal-page-hero {
    min-height: 220px;
    display: flex;
    align-items: center;
    color: #fff;
    background: linear-gradient(135deg, #2556a4, #21a0a0);
}

.portal-page-hero--about {
    background: linear-gradient(135deg, #254b8f, #1b9a8a);
}

.portal-page-hero--help {
    background: linear-gradient(135deg, #2d5d7b, #3b8f7b);
}

.portal-page-hero__content {
    max-width: 720px;
    padding: 38px 0;
}

.portal-page-hero__eyebrow {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: .88;
}

.portal-page-hero h1 {
    margin: 0 0 12px;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
}

.portal-page-hero p {
    max-width: 640px;
    color: rgba(255, 255, 255, .88);
    font-size: 15px;
    line-height: 1.9;
}

.portal-info-section,
.portal-help-layout {
    margin-top: 22px;
    background: #fff;
    border: 1px solid #eceff5;
    box-shadow: 0 10px 28px rgba(53, 72, 110, .05);
}

.portal-info-section {
    padding: 28px 32px;
}

.portal-section-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #edf0f5;
}

.portal-section-title span {
    color: #253044;
    font-size: 22px;
    font-weight: 700;
}

.portal-section-title em {
    color: #8b95a7;
    font-style: normal;
    font-size: 13px;
    white-space: nowrap;
}

.portal-rich-content {
    color: #4d586f;
    line-height: 1.95;
    font-size: 15px;
    word-break: break-word;
}

.portal-rich-content img {
    height: auto !important;
    margin: 8px 0;
}

.portal-rich-content table {
    max-width: 100%;
}

.portal-empty-state {
    padding: 36px 18px;
    border: 1px dashed #dfe5f1;
    background: #fafbfd;
    color: #8b95a7;
    text-align: center;
}

.portal-empty-state--compact {
    margin-top: 20px;
    padding: 22px 16px;
}

.portal-file-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.portal-file-card {
    min-width: 0;
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 12px;
    row-gap: 2px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid #e5eaf3;
    background: #fbfcff;
    color: #43506a;
}

.portal-file-card:hover {
    border-color: #4c8ddf;
    background: #f5f9ff;
    color: #1f5fa9;
}

.portal-file-card i {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #edf4ff;
    color: #2f75c8;
    font-size: 18px;
}

.portal-file-card span {
    min-width: 0;
    overflow: hidden;
    color: inherit;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.portal-file-card em {
    color: #8b95a7;
    font-style: normal;
    font-size: 12px;
}

.portal-file-card--download i {
    background: #eaf8f3;
    color: #16825f;
}

.portal-certificate-list {
    display: grid;
    gap: 18px;
}

.portal-certificate-item {
    padding: 20px;
    border: 1px solid #edf0f5;
    background: #fff;
}

.portal-certificate-item__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.portal-certificate-item__head h2 {
    margin: 0;
    color: #2d3342;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.portal-certificate-item__head span {
    color: #9aa3b2;
    font-size: 13px;
    white-space: nowrap;
}

.portal-help-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 420px;
}

.portal-help-list {
    border-right: 1px solid #edf0f5;
    background: #fbfcff;
}

.portal-help-list__title {
    padding: 20px 22px;
    color: #253044;
    font-size: 17px;
    font-weight: 700;
    border-bottom: 1px solid #edf0f5;
}

.portal-help-list a {
    display: block;
    padding: 16px 22px;
    border-bottom: 1px solid #edf0f5;
    color: #4b566c;
}

.portal-help-list a:hover,
.portal-help-list a.is-active {
    background: #fff;
    color: #1f66b3;
}

.portal-help-list a span,
.portal-help-list a em {
    display: block;
}

.portal-help-list a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
}

.portal-help-list a em {
    margin-top: 4px;
    color: #9aa3b2;
    font-style: normal;
    font-size: 12px;
}

.portal-help-list__empty {
    padding: 24px 22px;
    color: #9aa3b2;
}

.portal-help-detail {
    min-width: 0;
    padding: 28px 32px;
}

.portal-file-downloads {
    margin-top: 28px;
}

.portal-file-downloads__title {
    margin-bottom: 12px;
    color: #253044;
    font-size: 16px;
    font-weight: 700;
}

.news-page-card--trade {
    padding: 18px 28px 30px;
}

.news-page-breadcrumb {
    color: #7d8598;
    font-size: 12px;
    margin-bottom: 18px;
}

.news-page-search--trade {
    justify-content: flex-start;
    margin: 0 0 16px;
}

.news-page-search--trade input {
    width: 640px;
    max-width: calc(100% - 86px);
    height: 42px;
    border: 1px solid #dcdfe6;
    border-right: 0;
    background: #fff;
}

.news-page-search--trade button {
    min-width: 86px;
    height: 42px;
    background: #a35acb;
}

.news-page-categories--trade {
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f2f7;
}

.news-page-categories--trade .news-page-categories__label {
    min-width: 72px;
    color: #2f3747;
}

.news-page-categories--trade .news-page-category {
    padding: 2px 8px;
    margin-right: 2px;
    border-radius: 2px;
    font-size: 13px;
    line-height: 1.7;
}

.trade-list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0 8px;
    color: #666;
}

.trade-list-head__title {
    font-size: 15px;
    font-weight: 700;
    color: #2f3747;
}

.trade-list-head__summary {
    font-size: 12px;
    color: #8e96a7;
}

.trade-list-head__summary span {
    color: #a35acb;
    font-weight: 700;
}

.news-page-categories--trade .news-page-category.is-active {
    background: #f2a23a;
    color: #fff;
}

.news-page-list--trade {
    padding: 0;
    margin-top: 6px;
}

.news-page-item--trade {
    display: block;
    min-height: 0;
    padding: 18px 0;
    border-bottom: 1px solid #eef1f6;
}

.news-page-item__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
}

.news-page-item__title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.news-page-item__badge {
    flex: 0 0 auto;
    color: #202020;
    font-weight: 700;
    letter-spacing: .5px;
}

.news-page-item--trade .news-page-item__title {
    font-size: 16px;
    font-weight: 700;
    color: #2f3747;
    white-space: normal;
}

.news-page-item__date {
    color: #9aa3b2;
    white-space: nowrap;
    flex: 0 0 auto;
}

.news-page-item__meta-row {
    display: flex;
    align-items: center;
    gap: 36px;
    color: #7f8798;
    font-size: 13px;
}

.news-page-item__meta {
    white-space: nowrap;
}

.news-page-pagination .news-page-pagebtn,
.news-page-pagination .news-page-pageellipsis {
    display: inline-block;
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 3px;
    padding: 0 8px;
    border: 1px solid #e3e7ef;
    background: #fff;
    color: #667085;
    font-size: 12px;
    text-align: center;
}

.news-page-pagination .news-page-pagebtn.is-active {
    border-color: #a35acb;
    background: #a35acb;
    color: #fff;
}

.news-page-pagination .news-page-pagebtn.is-disabled {
    color: #b9c0cc;
    cursor: not-allowed;
}

.news-page-item--trade:hover .news-page-item__title {
    color: #8c59df;
}

.trade-detail-layout {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 18px;
}

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

.trade-detail-side {
    width: 280px;
    flex: 0 0 280px;
}

.trade-detail-banner {
    height: 60px;
    margin-bottom: 18px;
    border-radius: 2px;
    background: linear-gradient(90deg, #2378f5 0%, #2f66dd 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.trade-detail-banner::before,
.trade-detail-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.trade-detail-banner::before {
    width: 78px;
    height: 78px;
    left: 36px;
    top: -18px;
}

.trade-detail-banner::after {
    width: 56px;
    height: 56px;
    left: 92px;
    top: -4px;
}

.trade-detail-banner__badge {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 7px 16px;
    border-radius: 999px;
    background: #ffdf49;
    color: #1754be;
    font-size: 14px;
    font-weight: 700;
}

.trade-detail-banner__text {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.trade-detail-card {
    background: #fff;
    border: 1px solid #edf0f5;
    padding: 22px 24px 34px;
}

.trade-detail-divider {
    height: 1px;
    margin: 14px 0 28px;
    background: #eff2f6;
}

.trade-detail-title {
    margin: 0 0 24px;
    text-align: center;
    color: #1f2430;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.75;
}

.trade-detail-table {
    width: 100%;
    margin-bottom: 28px;
    border-collapse: collapse;
    table-layout: fixed;
}

.trade-detail-table th,
.trade-detail-table td {
    border: 1px solid #e7eaf0;
    padding: 10px 14px;
    font-size: 14px;
    color: #333;
}

.trade-detail-table th {
    width: 120px;
    background: #fff;
    font-weight: 500;
}

.trade-detail-content {
    color: #2f3542;
    font-size: 15px;
    line-height: 1.95;
}

.trade-detail-content__meta {
    margin: 0 0 18px;
    padding: 14px 18px;
    background: #f8f9fc;
    border: 1px solid #edf0f5;
}

.trade-detail-content__meta p {
    margin: 0 0 6px;
    color: #4a5568;
    font-size: 14px;
    line-height: 1.8;
}

.trade-detail-content__meta p:last-child {
    margin-bottom: 0;
}

.trade-detail-content h2 {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 700;
    color: #1f2430;
}

.trade-side-card {
    background: #fff;
    border: 1px solid #edf0f5;
    padding: 18px 18px 20px;
    margin-bottom: 18px;
}

.trade-side-btn {
    display: block;
    height: 38px;
    line-height: 38px;
    border-radius: 2px;
    background: #46a0ff;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
}

.trade-side-section {
    margin-bottom: 20px;
    padding-top: 2px;
}

.trade-side-section:last-child {
    margin-bottom: 0;
}

.trade-side-section__title {
    margin-bottom: 10px;
    color: #2b313f;
    font-size: 14px;
    font-weight: 700;
}

.trade-side-section__line {
    margin-bottom: 4px;
    color: #666;
    font-size: 13px;
    line-height: 1.8;
}

.trade-side-card--tools {
    padding-bottom: 12px;
}

.trade-tool-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
    margin-top: 16px;
}

.trade-tool-item {
    min-height: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    color: #4a90e2;
    font-size: 13px;
    line-height: 1.7;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s ease, color .2s ease;
}

.trade-tool-item:hover {
    color: #2f7fe2;
    text-decoration: none;
    transform: translateY(-2px);
}

.trade-tool-item.is-disabled {
    color: #a8b7cc;
    cursor: default;
    pointer-events: none;
}

.trade-tool-item.is-disabled .trade-tool-item__icon {
    border-color: #cfe0f7;
    color: #a8c7f0;
}

.trade-tool-item__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
    border: 2px solid #90c4ff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #69aef7;
    font-size: 24px;
    background: #fff;
}

.trade-tool-item__preview {
    position: absolute;
    left: 50%;
    top: calc(100% + 14px);
    transform: translateX(-50%);
    display: none;
    width: 360px;
    max-width: min(360px, calc(100vw - 48px));
    padding: 12px;
    background: #fff;
    border: 1px solid #dbe7ff;
    border-radius: 12px;
    box-shadow: 0 16px 36px rgba(32, 92, 196, 0.2);
    z-index: 20;
}

.trade-tool-item__preview--qr {
    width: 340px;
    max-width: min(340px, calc(100vw - 48px));
    padding: 14px;
}

.trade-tool-item__preview::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -8px;
    width: 14px;
    height: 14px;
    margin-left: -7px;
    background: #fff;
    border-top: 1px solid #dbe7ff;
    border-left: 1px solid #dbe7ff;
    transform: rotate(45deg);
}

.trade-tool-item__preview img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    height: auto;
    border-radius: 8px;
}

.trade-tool-item__preview--qr img {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-height: none;
    object-fit: contain;
    background: #fff;
}

.trade-tool-item--has-preview:hover .trade-tool-item__preview {
    display: block;
}

@media (max-width: 767px) {
    .portal-page-hero {
        min-height: 190px;
    }

    .portal-page-hero__content {
        padding: 30px 0;
    }

    .portal-page-hero h1 {
        font-size: 27px;
    }

    .portal-info-section {
        padding: 22px 18px;
    }

    .portal-section-title,
    .portal-certificate-item__head {
        display: block;
    }

    .portal-section-title em,
    .portal-certificate-item__head span {
        display: block;
        margin-top: 6px;
        white-space: normal;
    }

    .portal-file-grid {
        grid-template-columns: 1fr;
    }

    .portal-help-layout {
        grid-template-columns: 1fr;
    }

    .portal-help-list {
        border-right: 0;
        border-bottom: 1px solid #edf0f5;
    }

    .portal-help-detail {
        padding: 22px 18px;
    }

    .trade-tool-item__preview {
        width: min(300px, calc(100vw - 32px));
        top: calc(100% + 10px);
        padding: 8px;
    }

    .trade-tool-item__preview--qr {
        width: min(280px, calc(100vw - 32px));
        padding: 10px;
    }

    .trade-tool-item__preview img {
        max-height: 300px;
    }

    .trade-tool-item__preview--qr img {
        max-height: none;
    }
}

.news-detail__meta {
    display: flex;
    gap: 18px;
    color: #8b95a7;
    font-size: 13px;
    margin-bottom: 14px;
}

.news-detail__title {
    margin: 0 0 18px;
    font-size: 30px;
    color: #2d3342;
    font-weight: 700;
    line-height: 1.4;
}

.news-detail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.news-detail__tags span,
.portal-news-category {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: #f5f6fa;
    color: #5e6a82;
}

.notice-item__title {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice-item__date {
    flex-shrink: 0;
    margin-left: 20px;
}

.notice-list__empty {
    padding: 48px 20px;
    text-align: center;
    color: #98a2b3;
    font-size: 15px;
}

body.is-login-picker-open {
    overflow: hidden;
}

.login-picker[hidden] {
    display: none !important;
}

.login-picker {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-picker__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .48);
    backdrop-filter: blur(3px);
}

.login-picker__dialog {
    position: relative;
    z-index: 1;
    width: 460px;
    max-width: 100%;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, .24);
    overflow: hidden;
}

.login-picker__close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #f3f5f9;
    color: #667085;
    font-size: 24px;
    line-height: 30px;
    cursor: pointer;
    transition: all .2s ease;
}

.login-picker__close:hover {
    background: #eef2ff;
    color: #4d67ff;
}

.login-picker__body {
    padding: 44px 36px 38px;
}

.login-picker__title {
    margin: 0 0 28px;
    color: #1f2937;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

.login-picker__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.login-picker__item {
    min-height: 142px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid #e4e9f4;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    color: #344054;
    text-align: center;
}

.login-picker__item:hover {
    border-color: #6a75ff;
    color: #4d67ff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(77, 103, 255, .16);
}

.login-picker__icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #4d67ff, #7b4dff);
    color: #fff;
    font-size: 25px;
    box-shadow: 0 12px 24px rgba(91, 92, 255, .24);
}

.login-picker__label {
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .login-picker {
        padding: 18px;
    }

    .login-picker__body {
        padding: 40px 22px 28px;
    }

    .login-picker__grid {
        grid-template-columns: 1fr;
    }

    .login-picker__item {
        min-height: 118px;
    }
}

.search-panel.is-loading .search-panel__box button,
.search-panel__keywords a.is-disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.search-panel.is-loading .search-panel__box input {
    background: #f7f8fb;
}
