/* 招投标页面样式 */

/* 主要内容区域 */
main {
    padding-top: 6rem;
    background: #F4F5FA;
}

/* 招投标系统顶部图片 */
.ztb-banner {
    width: 100%;
    text-align: center;
}

.ztb-banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.ztb-banner h5 {
    font-size: 2.9rem;
    font-weight: 500;
    color: #333;
    padding: 3rem 0;
}

/* 各个区块的共同样式 */
section[class^="ztb-"] {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section[class^="ztb-"] img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* 可见时的样式 */
section[class^="ztb-"].visible {
    opacity: 1;
    transform: translateY(0);
}

/* 各个区块的特定样式 */
.ztb-solution {
    transition-delay: 0.1s;
}

.ztb-answer {
    transition-delay: 0.2s;
}

.ztb-data-life {
    transition-delay: 0.3s;
}

.ztb-fresh-data {
    transition-delay: 0.4s;
}

.ztb-industry-info {
    transition-delay: 0.5s;
}

.cb-bg1 {
    background: #fff;
}

.cb-bg2 {
    background: linear-gradient( 90deg, #FFF4E5 0%, #E9EBFF 100%);
}

.content-box {
    padding-bottom: 3.2rem;
}

.content-box h5 {
    font-size: 22px;
    padding: 24px 0 16px;
    text-align: center;
    color: #333;
    font-weight: 500;
}

.content-box p {
    font-size: 1.5rem;
    color: #333;
    text-align: center;
    line-height: 3rem;
}

.content-box img {
    padding: 0 10px;
}

/* 四大方案部分样式 */
.fd-box {
    background: #3F4871;
}

.solutions-title {
    text-align: center;
    color: #fff;
    padding: 2rem 0 0;
}

.solutions-title h2 {
    font-size: 3rem;
    font-weight: 600;
}

.solutions-container {
    padding: 2rem 0 3rem;
    overflow: visible;
    position: relative;
}

.solutions-swiper {
    padding: 2rem 0;
}

.solution-card {
    margin: 0 1rem;
    height: 17rem;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    background: rgba(255,255,255,0.12);
    border-radius: 5px;
}

.solution-card:hover {
    transform: translateY(-5px) rotateY(5deg);
}

.solution-icon {
    display: flex;
    align-items: center;
    margin-bottom: 1.6rem;
}

.solution-icon img {
    width: 30px !important;
    height: 30px;
    object-fit: contain;
    margin-right: 1.2rem;
}

.solution-card h3 {
    font-size: 2.5rem;
    color: #FFFFFF;
}

.solution-card p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #CBD1EB;
    text-align: left;
}

/* Swiper分页器样式 */
.solutions-pagination {
    position: relative;
    margin-top: 1.5rem;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #666;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: #f7a01b;
    opacity: 1;
}

/* 申请表单样式 */
.apply-container {
    padding: 3rem 1rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.apply-container h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 600;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 0.5rem;
    text-align: left;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    color: #333;
    font-weight: 600;
}

.required {
    color: #f00;
    margin-left: 0.2rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E4E4E4;
    border-radius: 5px;
    font-size: 1.75rem;
    background-color: #fff;
}

.form-input:focus {
    border-color: #f7a01b;
    outline: none;
}

.error-message {
    color: #f00;
    font-size: 1.2rem;
    margin-top: 0.3rem;
    height: 1.2rem;
}

.apply-btn {
    background: linear-gradient( 93deg, #FFA800 0%, #FF5A01 100%);
    color: #fff;
    border: none;
    font-size: 1.75rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 1rem auto;
    width: 16rem;
    height: 4.5rem;
    line-height: 4.5rem;
}

.apply-btn:hover {
    background-color: #e89000;
}

/* 提交成功弹窗 */
.submit-success {
    position: fixed;
    top: -80px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display: none;
}

.success-content {
    text-align: center;
    width: 80%;
    max-width: 300px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
}

.success-content p {
    margin: 0.5rem 0;
    font-size: 1.6rem;
}

.close-btn {
    background-color: #f7a01b;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 1.5rem;
}

/* 国际会议轮播图样式 */
.ztb-title1 {
    padding-bottom: 2rem;
    background: #fff;
}

.h5-title {
    font-size: 2.9rem;
    font-weight: 500;
    color: #333;
    padding: 3rem 0;
    background: #fff;
}

.bg-gray {
    background: #F4F5FA;
}

.ztl-header {
    padding: 2.4rem;
    background: #fff;
}
.ztl-header h5 {
    font-size: 2.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.8rem;
}
.ztl-header p {
    font-size: 1.5rem;
    color: #666;
}

.meeting-swiper-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 0.6rem 2rem 3rem;
}

.meeting-swiper {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.meeting-swiper .swiper-slide {
    text-align: center;
}

.meeting-swiper .swiper-slide img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.ztl-line {
    margin: 0 2rem;
}
.ztl-line li {
    background: linear-gradient( 180deg, #F8F9FC 0%, #FFFFFF 100%);
    box-shadow: inset 0px 2px 0px 0px rgba(255,255,255,0.25), 0px 0px 8px 0px rgba(65,65,65,0.03);
    display: flex;
    align-items: center;
    padding: 2rem 3rem;
}

.ztl-line-icon {
    margin: 1.6rem auto;
    background: #ED7E00;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.ztl-line-icon img {
    width: 12px !important;
    height: 12px !important;
}

.ztl-line li img {
    width: 30px;
    min-width: 30px;
    height: auto;
    object-fit: cover;
    margin-right: 2.4rem;
}

.ztl-right {
    flex: 1;
}

.ztl-right h5 {
    font-size: 1.75rem;
    color: #333333;
    margin-bottom: 4px;
    text-align: left;
    font-weight: 500;
}

.ztl-right p {
    font-size: 1.5rem;
    color: #666666;
    text-align: left;
    text-decoration: none;
}

/* 自定义分页器样式 */
.meeting-pagination {
    position: relative;
    text-align: center;
}

.meeting-pagination .swiper-pagination-bullet {
    width: 2rem;
    height: 0.4rem;
    border-radius: 0.2rem;
    background-color: #ccc;
    opacity: 0.5;
    margin: 0 0.5rem;
}

.meeting-pagination .swiper-pagination-bullet-active {
    background-color: #f7a01b;
    opacity: 1;
    width: 3rem;
}

/* 外贸资讯轮播图样式 */
.news-swiper-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.news-swiper {
    width: 100%;
}

.news-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* 自定义分页器样式 */
.news-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.news-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 2px;
    border-radius: 2px;
    background: rgba(0,0,0,0.54);
    margin: 0 5px;
    opacity: 1;
    transition: all 0.3s ease;
}

.news-pagination .swiper-pagination-bullet-active {
    width: 20px;
    background-color: #fff;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    section[class^="ztb-"] {
        /* margin-bottom: 2rem; */
    }
    
    .solutions-title h2 {
        font-size: 3.2rem;
    }
    
    .solution-card {
        padding: 1.8rem;
    }
    
    .apply-container h2 {
        font-size: 3.2rem;
    }
}

.process-box {
    background: #fff;
    padding: 2.8rem 0;
}

.process-box h3 {
    text-align: center;
    font-size: 3.2rem;
    color: #333;
    font-weight: 600;
}
.pb-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    margin: 2.6rem 0 0.6rem;
    padding-left: 2.4rem;
    scrollbar-width: none;  /* 隐藏滚动条 */
    -ms-overflow-style: none; /* IE/Edge 旧版本 */
}
.pb-list::-webkit-scrollbar {
  display: none;
}

.pb-list img {
    width: auto;
    height: 14.5rem !important;
    object-fit: contain;
    margin-right: 2.4rem;
}

/* 数据查询部分样式 */
.data-query-section {
    padding: 2rem 0;
    background-color: #f5f7fa;
}

.query-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.region-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 2rem;
}

.tab-item {
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1.6rem;
    color: #333;
    position: relative;
}

.tab-item.active {
    color: #f7a01b;
    font-weight: 600;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f7a01b;
}

.query-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    margin-bottom: 1.5rem;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    flex: 1;
    margin-right: 1rem;
}

.form-group:last-child {
    margin-right: 0;
}

.search-input {
    flex: 3;
}

.form-select, .form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #666;
    border-radius: 4px;
    font-size: 1.5rem;
    background-color: #fff;
}

.form-select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><path d="M0 0l6 6 6-6z" fill="%23333"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
    background-color: #fff;
    color: #333;
}


.form-select option:checked,
.form-select option:hover,
.form-select option:focus {
    background-color: #f7a01b;
    color: #fff;
}

.query-btn {
    width: 100%;
    padding: 1rem;
    background-color: #f7a01b;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.query-btn:hover {
    background-color: #e89000;
}

.query-results {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    min-height: 300px;
    position: relative;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
}

.results-table th, .results-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 1.5rem;
}

.results-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #333;
}

.results-table tr:last-child td {
    border-bottom: none;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

/* 加载动画 */
.loading-spinner {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 0.8rem;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.empty-state {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
    color: #999;
}

.empty-img {
    width: 100px !important;
    height: 100px;
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1.5rem;
}


.service-stats {
    background: #fff;
}

.zs-list {
    background: #fff;
    padding-bottom: 4rem;
}

.zs-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #EBEBEB;
    padding: 1.6rem 2rem;
}

.zs-item {
    flex: 1;
}

.zs-item h5 {
    font-size: 2rem;
    color: #333;
    font-weight: 500;
    text-align: left;
}

.zs-item p {
    display: flex;
    align-items: center;
}

.zs-item p span {
    font-size: 1.75rem;
    color: #666;
    margin-top: 1rem;
    position: relative;
    margin-right: 2rem;
}

.zs-item p span:first {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: #D9D9D9;
}

.zs-num {
    font-size: 2rem;
    color: #333;
    font-weight: 500;
    word-break: keep-all;
}


.rj-banner {
    background: #EFF0F2;
    padding-top: 35px;
    position: relative;
}

.rj-banner h5, .rj-banner2 h5 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 5px;
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    text-align: center;
}

.rj-banner2 {
    padding-top: 0;
}