
/* 准入查询标签页样式 */
.zrcx-tab {
    display: flex;
    background-color: #f8f9fa00;
    padding-right: 20px;
    padding-left: 20px;
    gap: 5px;
}

.zrcx-tab-item {
    flex: 1;
    text-align: center;
    cursor: pointer;
    height: 210px;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, #FBFCFE 0%, #DFF1FD 100%);
    box-shadow: 0px 0px 6px 0px rgba(3, 44, 66, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    gap: 8px;
    border-radius: 6px;
    position: relative;
}

.zrcx-tab-line {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-57%);
    width: 68% !important;
    height: 1px !important;
    z-index: 10;
    display: none;
}

.active .zrcx-tab-line {
    display: block !important;
}

.zrcx-tab-item:first-child {
    margin-right: 5px;
    background: linear-gradient(180deg, #FBFCFE 0%, #DFF1FD 100%);
    box-shadow: 0px 1px 0px 1px rgb(3 44 66 / 5%);
}

.zrcx-tab-item:last-child {
    margin-left: 5px;
    background: linear-gradient(180deg, #FBFCFE 0%, #DFF1FD 100%);
    box-shadow: 0px 1px 0px 1px rgb(3 44 66 / 5%);
}

.zrcx-tab-item-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.zrcx-tab-item img {
    width: 48px;
    height: 48px;
    transition: opacity 0.3s ease;
}

.zrcx-tab-item .first-child {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.zrcx-tab-item .next-child {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.zrcx-tab-item.active {
    border-left: 1px solid #458dfa;
    border-right: 1px solid #458dfa;
    border-top: 1px solid #458dfa;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    height: 220px;
    background: #f9fbfe;
}

.zrcx-tab-item.active .first-child {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.zrcx-tab-item.active .next-child {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.zrcx-tab-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    transition: color 0.3s ease;
    text-align: center;
    width: 100%;
    height: 40px;
}

.zrcx-tab-item.active .zrcx-tab-item-title {
    font-weight: 600;
}

.zrcx-tab-item-txt {
    font-size: 12px;
    color: #666;
    text-align: left;
    width: 100%;
    height: 3em;
}

.zrcx-tab-item-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    width: 100%;
    font-size: 14px;
    color: #0063F9;
    cursor: pointer;
    margin-top: 20px;
}


.zrcx-btn-active2, .zrcx-btn-active1 {
    width: 15px !important;
    height: 15px !important;
}

.zrcx-tab-item-btn .zrcx-btn-active1 {
    display: block;
}

.zrcx-tab-item-btn .zrcx-btn-active2 {
    display: none;
}

.zrcx-tab-item.active .zrcx-tab-item-btn .zrcx-btn-active1 {
    display: none;
}

.zrcx-tab-item.active .zrcx-tab-item-btn .zrcx-btn-active2 {
    display: block;
}

/* 准入查询区域样式 */
.zrcx-query {
    margin: 0 20px 0px 20px;
    padding: 15px;
    background-image: url(../images/spsxx-spstb-q-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-left: 1px solid #458dfa;
    border-bottom: 1px solid #458dfa;
    border-right: 1px solid #458dfa;
    /* border-top: 1px solid #99c0fc; */
    position: relative;
    z-index: 10;
}

.zrcx-query::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 66%;
    transform: translateX(-50%);
    width: 68%;
    height: 1px;
    background-color: #b5d2fc;
    z-index: 1;
    box-shadow: 13px 0px 0px -4px rgb(3 44 66 / 5%);
}

.zrcx-query-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    margin-bottom: 15px;
}

.zrcx-query-item:last-child {
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 0;
}

.zrcx-query-item label {
    color: #0063F9;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    line-height: 25px;
}

.zrcx-query-item input,
.zrcx-query-item select {
    width: 100%;
    padding: 8px 12px;
    border: 0.5px solid #BAE2FD;
    font-size: 14px;
    background-color: #fff;
    height: 42px;
    opacity: 1;
    background: #FFFFFF;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    border-radius: 5px;
}

.zrcx-query-item input:focus,
.zrcx-query-item select:focus {
    outline: none;
    border-color: #0063F9;
    box-shadow: 0 0 0 2px rgba(0, 99, 249, 0.1);
}

/* 按钮容器样式 */
.zrcx-item-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.zrcx-item-btn button {
    padding: 10px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.zrcx-item-btn button:first-of-type {
    background-color: #0063F9;
    color: white;
    width: 50%;
}

.zrcx-item-btn button:first-of-type:hover {
    background-color: #0052D3;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 99, 249, 0.3);
}

.zrcx-item-btn button:last-of-type {
    background-color: #068A3E;
    color: #ffffff;
    border: 1px solid #DDD;
    width: 50%;
}

.zrcx-item-btn button:last-of-type:hover {
    background-color: #E8E8E8;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 第一部分 */
.access-stat-card {
    background-color: #fff;
    border-radius: 8px;
    display: block;
    align-items: center;
    padding: 0 20px 0 20px;
}

.access-stat-wrapper {
    display: flex;
    align-items: center;
    padding: 20px 10px;
    background: rgb(225 242 253);
    background-size: contain;
    background-repeat: no-repeat;
    height: 100px;
    border-bottom: 1px solid #d0dbe2;
}

.access-stat-icon {
    font-size: 30px;
    color: #4285f4;
    margin-right: 20px;
    margin-left: 40px;
}

.access-stat-icon {
    background-image: url(../images/index-2-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 55px;
    height: 55px;
    margin-right: 15px;
}

.access-stat-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.access-zgfzjk {
    font-family: "Source Han Sans", sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 25px;
    letter-spacing: 0px;
    font-feature-settings: "kern" on;
    color: rgba(0, 0, 0, 0.8);
    text-align: left;
}

.access-stat-text .access-growth:last-child {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
    text-align: left;
}

.access-stat-text .access-growth {
    font-family: "Source Han Sans", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 25px;
    letter-spacing: 5px;
    font-feature-settings: "kern" on;
    color: rgba(0, 0, 0, 0.8);
}

.access-stat-text .access-amount {
    font-size: 33px;
    font-weight: bold;
    color: #0063f9;
    margin-right: 10px;
}

.access-amount {
    font-family: Arial;
    font-size: 36px;
    font-weight: bold;
    line-height: 25px;
    text-align: center;
    letter-spacing: 0px;
    color: #0063F9;
}

.access-carousel {
    position: relative;
    background-image: url(../images/zrcx-top2-bg.png);
    background-size: 106% 105%;
    background-repeat: no-repeat;
    background-position-x: 74%;
    background-position-y: 90%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.access-carousel-header {
    text-align: center;
    margin-bottom: 15px;
    font-size: 19px;
    font-weight: 600;
    background-image: url(../images/zrcxLine.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.access-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    max-width: none;
}

.access-carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.access-dot.active {
    background-color: #4285f4;
    width: 30px;
    border-radius: 20px;
}

.access-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 3px;
    cursor: pointer;
}

.access-carousel-products {
    display: flex;
    overflow: visible;
    flex: 1;
    transition: transform 0.3s ease;
    flex-wrap: nowrap;
    width: 270px;
}

.access-product-item {
    flex: 0 0 26.7%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0px;
    box-sizing: border-box;
    min-width: 0;
    overflow: hidden;
}

.access-product-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    overflow: hidden;
}

.access-product-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.access-product-name {
    font-size: 12px;
    text-align: center;
    margin-bottom: 5px;
    font-weight: 600;
}

.access-product-country {
    font-size: 10px;
    color: #999;
    text-align: center;
}

.access-carousel-arrow i {
    color: #0063F9;
}


.access-carousel-arrow {
    font-size: 24px;
    color: #999;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0 10px;
    margin-top: -50px;
    z-index: 10;
}

/* 分页器样式 */
.pagination {
    margin-top: 30px;
    padding: 20px 0;
}

.page-numbers-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.page-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #666;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-btn:hover:not(:disabled) {
    border-color: #0063F9;
    color: #0063F9;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-number {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #666;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-number:hover {
    border-color: #0063F9;
    color: #0063F9;
}

.page-number.active {
    background-color: #0063F9;
    color: #fff;
    border-color: #0063F9;
}

.page-info-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.page-input {
    width: 50px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.page-input:focus {
    outline: none;
    border-color: #0063F9;
}

/* 结果列表样式 */
.zrcx-result-list {
    padding: 20px;
}

.zrcx-result-item:nth-child(odd) {
    background-color: #F5F9FC;
}

.zrcx-result-item {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.zrcx-result-item-title h4 {
    font-size: 14px;
    line-height: 36px;
    color: #666666;
    margin: 0;
}

.zrcx-result-item-title h2 {
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    color: #000000;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zrcx-result-item-content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.zrcx-result-item-content > div {
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: normal;
    line-height: 28px;
    color: #666666;
}
