/* 轮播图样式 */
.slider-container {
    height: 649px;
    position: relative;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide-content.active {
    opacity: 1;
    z-index: 2;
}

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

.slide-text {
    position: absolute;
    top: 55%;
    left: 10%;
    transform: translateY(-50%);
    color: #000000;
    max-width: 40%;
    z-index: 2;
}

.slide-text h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: #fff;
}

.slide-text p {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: #fff;
}

.slide-features {
    display: flex;
    gap: 30px;
}

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

.feature i {
    font-size: 24px;
    margin-right: 10px;
    color: #fff;
}

.feature span {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .slider-container {
        height: 400px;
    }
    
    .slide-text {
        max-width: 80%;
        left: 5%;
    }
    
    .slide-text h2 {
        font-size: 32px;
    }
    
    .slide-text p {
        font-size: 18px;
    }
    
    .slide-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .feature i {
        font-size: 20px;
    }
    
    .feature span {
        font-size: 16px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.card-container {
    display: flex;
    justify-content: space-between;
    margin: -50px 10% 30px;
    position: relative;
    z-index: 10;
}

.card {
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    width: 30%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.card-header .icon {
    font-size: 24px;
    margin-right: 10px;
}

.card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-desc {
    color: #666;
    font-size: 14px;
    flex: 1;
}

.card-button {
    background: linear-gradient(to right, #2566fd, #6466fe);
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    padding: 8px 15px;
    margin-left: 15px;
}

.new-container-1 {
    background-color: #ffffff;
    padding: 40px 10%;
}

.new-container-1 .new-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        margin: -30px 5% 20px;
    }
    
    .card {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .new-container-1 {
		padding: 20px 4%;
    }
    
}

.view-more-btn {
    display: inline-block;
    width: 100px;
    height: 40px;
    background: linear-gradient(to right, #2566fd, #6466fe);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 0px;
    text-decoration: none;
    margin-left: auto; 
    font-size: 14px;
    transition: all 0.3s ease;
    float: right;
}

.view-more-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 新增容器-2 */
.new-container-2 {
    background-color: #dae8ff;
    padding: 40px 10%;
}

.new-container-2 .new-header-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: nowrap;  /* 确保不换行 */
    white-space: nowrap; /* 防止文本换行 */
}

.new-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.card-slider-2 {
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
}

.card-wrapper-2 {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.card-item-2 {
    min-width: calc(33.333% - 20px);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #cccccc;
}

.card-icon-2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card-title-2 {
    font-size: 18px;
    color: #2A83FC;
    margin: 10px 0;
}

.card-desc-2 {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.view-more-btn-2 {
    display: inline-block;
    padding: 8px 15px;
    background-color: #2A83FC;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-more-btn-2:hover {
    background-color: #1a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .new-container-2 {
		padding: 20px 4%;
    }
    
    .card-wrapper-2 {
        gap: 10px;
    }
    
    .card-item-2 {
        min-width: calc(100% - 0px);
    }
}

/* 热门数据产品卡片样式 */
.card-slider-1 {
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
    position: relative;
    padding: 20px 0;
}

.card-slider-1:hover .card-item-1 {
    transform: translateY(0px);
}

.card-wrapper-1 {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.card-group {
    display: flex;
    gap: 20px;
    min-width: 100%;
}

.card-item-1 {
    /*width: calc(33.333% - 14px);*/
    background: white;
    border-radius: 0px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    cursor: pointer;
}

/*.card-item-1:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #2A83FC;
}*/
h2{
    font-size: 32px;
}
.card-item-1.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-item-1.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-icon-1 {
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.card-text-1 {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    background-color: #d0daeb;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
}

.card-title-1 {
    font-size: 16px;
    color: #2A83FC;
    margin-top: 10px;
    font-weight: bold;
    width:calc(100% - 100px);
    
}

.card-image-1 {
    position: absolute;
    right: 20px;
    top: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f0f0f0;
}

.card-desc-1 {
    margin: 25px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
}

/* 轮播控制按钮 */
.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 30px;
    height: 4px;
    background-color: #ccc;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background-color: #2A83FC;
    transform: scaleY(1.5);
}

.consult-btn {
    display: inline-block;
    padding: 8px 15px;
    background: linear-gradient(to right, #2566fd, #6466fe);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.consult-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.consult-btn:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.consult-btn:hover {
    background-color: #1a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.consult-btn span {
    margin-left: 5px;
}

.feature-boxes {
    margin: 15px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    
}

.feature-box {
    border: 1px solid #d0daeb;
    border-radius: 6px;
    padding: 2px 2px;
    font-size: 13px;
    color: #333;
    transition: all 0.3s ease;
    text-align: center;

    position: relative;
    overflow: hidden;
    width:32.33%;
    margin-right: 1.5%;
}
.feature-box:last-child{
    margin-right: 0;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(42, 131, 252, 0.1), transparent);
    transition: all 0.6s ease;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-box:hover {
    border-color: #2A83FC;
    background-color: #f5f9ff;
}
@media (max-width: 768px) {
    .card-slider-1, .card-slider-2 {
        padding: 10px 0;
    }
    
    .card-wrapper-1, .card-group-2 {
        flex-direction: column;
        gap: 15px;
    }
    
    .card-item-1, .card-item-2 {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .card-item-1:last-child, .card-item-2:last-child {
        margin-bottom: 0;
    }
    
    .feature-boxes {
        flex-direction: column;
        gap: 8px;
    }
    
    .feature-box {
        width: 100%;
    }
    
    .slider-controls, .slider-controls-2 {
        margin-top: 15px;
    }
    
    .slider-dots, .slider-dots-2 {
        justify-content: center;
    }
}

/* 热门数据交易所幻灯片样式 */
.card-slider-2 {
    width: 100%;
    overflow: hidden;
    margin: 30px 0;
    position: relative;
}

.card-wrapper-2 {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.card-group-2 {
    display: flex;
    gap: 20px;
    min-width: 100%;
}

.card-item-2 {
    /*width: calc(33.3333% - 14px);*/
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    white-space: normal;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    flex-shrink: 0;
}

/* 控制点样式 */
.slider-controls-2 {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-dots-2 {
    display: flex;
    gap: 10px;
}

.slider-dots-2 .dot-2 {
    width: 30px;
    height: 4px;
    background-color: #ccc;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots-2 .dot-2.active {
    background-color: #2A83FC;
    transform: scaleY(1.5);
}

.card-item-2.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-item-2:last-child {
    margin-right: 0;
}

.card-header-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-title-2 {
    font-size: 18px;
    color: #2A83FC;
    font-weight: 600;
}

.card-city-2 {
    background-color: #e0edff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    color: #2A83FC;
}

.card-desc-2 {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.card-divider-2 {
    border: none;
    height: 1px;
    background-color: #f0f0f0;
    margin: 15px 0;
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 60px;
}

.card-footer-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.card-item-2 {
    position: relative;
    padding-bottom: 80px;
}

.consult-btn-2 {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background: linear-gradient(to right, #2566fd, #6466fe);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.consult-btn-2:hover {
    background-color: #1a6fd8;
}

.consult-btn-2 span {
    margin-left: 5px;
}

.card-logo-2 {
    width: 147px;
    height: 40px;
    border-radius: 4px;
    object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .card-container-2 {
        overflow-x: auto;
        white-space: nowrap;
        gap: 15px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }
    
    .card-item-2 {
        display: inline-block;
        width: 100%;
        vertical-align: top;
        white-space: normal;
        margin-right: 15px;
    }
    
    .card-item-2:last-child {
        margin-right: 0;
    }
}

/* 卡片布局-3样式 */
.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.grid-item-3 {
	background: linear-gradient(to right, #f0f3ff, #f8faff);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
	z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.grid-item-3.visible {
    opacity: 1;
    transform: translateY(0);
}


.card-bg-3 {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -48px;
    height: 220px;
    background-size: contain;
    opacity: 0.4;
    margin: 0;
    z-index: -6;
}

.en-title-3 {
    display: block;
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.cn-title-3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 18px;
}

.card-desc-3 {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.join-btn-3 {
    display: inline-block;
    padding: 8px 15px;
    background: linear-gradient(to right, #2566fd, #6466fe);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.join-btn-3:hover {
    background: #1a6fd8;
    transform: translateY(-2px);
}


/* 微信图标悬停效果 */
.wx-hover-container {
    position: relative;
    display: inline-block;
}

.wx-qrcode {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.wx-hover-container:hover .wx-qrcode {
    opacity: 1;
    visibility: visible;
}

.wx-qrcode img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .card-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-item-3::after {
        width: 200px;
        height: 150px;
    }
}

/* Logo展示区-4样式 */
.logo-container-4 {
    margin: 30px 0;
    overflow: hidden;
}

.logo-wrapper-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.logo-item-4 {
    width: calc(20% - 16px); /* 5个logo每行 */
    min-width: 150px;
    transition: transform 0.3s ease;
}

.logo-item-4:hover {
    transform: scale(1.05);
}

/* 热门数据产品tab样式 */
.tab-buttons {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.tab-btn {
    padding: 8px 16px;
    background: #e0edff;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s;
    color: #266dfb;
}

.tab-btn.active {
    background: linear-gradient(to right, #2566fd, #6466fe);
    color: white;
}

/* 移动端tab按钮样式 */
@media (max-width: 768px) {
    .new-header-3 {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .new-header-3 h2 {
        text-align: left;
        width: 100%;
    }
    
    .tab-buttons-3 {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 15px;
        margin-left: 0;
    }
    
    .tab-buttons-3 .tab-btn {
        width: 100%;
        text-align: left;
        padding: 10px 15px;
    }
}

.tab-content {
    display: none;
}

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

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.grid-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.grid-item:hover {
    transform: translateY(-5px);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .logo-item-4 {
        width: calc(50% - 10px); /* 2个logo每行 */
    }
    
    .tab-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
	
	.new-container-3 {
    background-color: white;
    margin: 0px 5%;
    padding: 50px 0px 70px 0px;
}
}

.new-container-3 {
    background-color: white;
    margin: 0 10%;
    padding: 50px 0px 70px 0px;
}

.new-header-3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: nowrap;
    white-space: nowrap;
}


/* 移动端适配 */
@media (max-width: 768px) {
	.new-container-3 {
    background-color: white;
    margin: 0px 5%;
    padding: 50px 0px 30px 0px;
}
.card-item-1{
    padding:10px;
}
.card-desc-1{
    font-size: 12px;
}
.card-title-1{
    width:85%;
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-image-1{
    height: 25px;
    width:25px;
    right:10px;
    top:10px;
}
.card-item-2{
    padding:10px;
}
.card-title-2{
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-city-2{
    font-size: 12px;
}
.card-footer-2{
    position: unset;
    flex-wrap: wrap;
}
.card-divider-2{
    display: none;
}
.card-logo-2{
    margin-top:15px;
}
}