/* 全局样式 */
.deepseek_banners{min-width: 1220px; height:502px; background:url(../images/deepseek_server.jpg) no-repeat center top;}
.container {
    margin-bottom:40px;
}

/* 图片样式 */
.image-with-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.image-with-text img {
    width: 35%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    ;
    border-radius: 10px;
    overflow: hidden;
    display: block;
}

.image-with-text .text {
    width: 60%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 16px;
    text-align: justify;
}

.image-with-text .text h2  {
	font-weight:bold;
}

.image-with-text .text p  {
    line-height: 36px;
	font-size:16px;
}

.image-with-text .h2 {
    font-weight: bold;
}

/** 大标题 */
.title_center {
    text-align: center;
    padding-top: 20px;
    font-size: 30px;
    margin-top: 20px;
    font-weight:bold;
}

.title_center_small {
    text-align: center;
    font-size: 14px;
    padding-bottom: 20px;
    padding:15px;
}


/* 四列布局样式 */
.four-columns {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.four-columns .column {
    width: 24%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #ddd;
    margin-right: 30px;
    border-radius: 10px;
    transition: box-shadow 0.5s ease;
}

.four-columns .column:hover {
    box-shadow: 0 0 10px rgba(0, 0, 255, 0.5);
}

.four-columns .column h3 {
    text-align: center;
    background: #eee;
    padding: 10px 0;
    border-radius: 5px;
    color: #36f;
    font-weight:bold;
    margin:10px 0 7px 0;    
}

.four-columns .column p {
    text-align: center;
    line-height: 30px;
}

.four-columns .column img {
    border-radius: 10px;
    width: 100%;

}

/* 三列布局样式 */
.three-columns {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.three-columns .column {
    width: 32%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    border: 1px solid #ddd;
    margin-right: 30px;
    border-radius: 10px;
    list-style: none;
    transition: box-shadow 0.5s ease;
}

.three-columns .column:hover {
    box-shadow: 0 0 10px rgba(0, 0, 255, 0.5);
}

.three-columns .column h3 {
    text-align: center;
    background: #eee;
    padding: 10px 0;
    border-radius: 5px;
}

.three-columns .column ul {
    padding: 0 0 0 10px;
}

.three-columns .column ul li {
    list-style: none;
    font-size: 14px;
    line-height: 28px;
}

.three-columns .column h3{font-weight:bold;}
.three-columns .column ul{padding:20px 0;}
.three-columns .column .changjing {
    font-size: 14px;
    color: #36f;
    padding:15px 0;
}

.three-columns .column .ck_jiage {
    text-align: center;
    padding: 10px 0;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
}

.three-columns .column .ck_jiage span {
    text-align: center;
    background: #36f;
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    margin: 0 5px;
}

.columns .column img {
    border-radius: 10px;
    width: 100%;

}

/* 动画效果 */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}