    .ppb30 {
	padding-top: 20px;
	padding-bottom: 10px;
}

    
    .ppb32 {
	padding-top: 0em;
	}


       	.ppb60 {
	padding-top: 40px;
	padding-bottom: 10px;
}

.font20 {
	font-size: 20px;
	
}

   	
    
.active5 {
	color: #000000;
}
.bot30 {
	padding-bottom: 35px;
}
.bg5 {
	background-image: url('/plugins/img/bg5.png');
	background-repeat: repeat;
}


/* 新的响应式Banner样式 */
.new-banner-area {
    position: relative;
    width: 100%;
    min-height: 550px;

    overflow: hidden;
    touch-action: pan-y;
}

.new-banner-video-bg {
    position: absolute;
    top: -2px;
    left: 0;
    width: 101%;
    height: 101%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.new-banner-video-bg.active {
    opacity: 1;
}

.new-banner-video-bg.no-transition {
    transition: none !important;
}

.new-banner-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 60px);
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    display: none;
}

.new-banner-image-bg.active {
    opacity: 1;
}

/* 轮播导航控制 */
.new-banner-nav-controls {
    position: absolute;
    top: -10%;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.new-banner-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}

.new-banner-nav-btn:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.new-banner-dots {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 12px;
    pointer-events: auto;
    z-index: 10;
}

.new-banner-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(184, 184, 184, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.new-banner-dot:hover {
    background: rgba(59, 59, 59, 0.8);
    transform: scale(1.2);
}

.new-banner-dot.active {
    width: 42px;
    border-radius: 6px;
    background: #797979;
    transform: scale(1);
}

/* Banner Text Navigation */
.new-banner-text-nav {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
}

.new-banner-text-nav-container {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    width: 100%;
}

.new-banner-text-nav-item {
    position: relative;
    font-size: 16px;
    color: #666666;
    cursor: pointer;
    padding-bottom: 8px;
    transition: color 0.3s ease;
}

.new-banner-text-nav-item:hover {
    color: #333333;
}

.new-banner-text-nav-item.active {
    color: #333333;
}

.new-banner-text-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(102, 102, 102, 0.3);
}

.new-banner-text-nav-item .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #333333;
    transition: width 0.1s linear;
}

.new-banner-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/plugins/img/bg1.jpg') center/cover no-repeat;
    opacity: 0;
    z-index: 0;
}

.new-banner-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px 95px;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.new-banner-content {
    flex: 1;
    max-width: 600px;
    color: #fff;
    opacity: 0;
    position: absolute;
    top: 40%;
    left: 20px;
    transform: translateY(-50%);
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.new-banner-content.active {
    opacity: 1;
    pointer-events: auto;
}

.new-banner-content h1 {
	font-size: 48px;
	font-weight: 500;
	margin-bottom: 20px;
	line-height: 1.2;
	animation: fadeInUp 0.8s ease-out;
}

.new-banner-content p {
    font-size: 18px;
    color:#000;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.new-banner-btn-group {
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.new-banner-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 30px;
	font-size: 16px;
	font-weight: 400;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.new-banner-btn-primary {
	background: #ffffff00;
	color: #000000;
	border: 1px solid #666666;
}

.new-banner-btn-primary:hover {
    background: #ffffff00;
    color: #666;
    border: 1px solid #666666;
    transition: none !important;
}

.new-banner-btn-secondary {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.new-banner-btn-secondary:hover {
    background: #000;
    color: #fff;
    transition: none !important;
}



/* Banner底部导航?*/
.new-banner-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 0;
}

.new-banner-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5px;
}

.new-banner-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.new-banner-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.new-banner-nav-item:hover {
	background: #FFFFFF;
}

.new-banner-nav-item:hover .new-banner-nav-title {
    color: #667eea;
}

.new-banner-nav-icon {
    display: none;
}

.new-banner-nav-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
	color: #333;
}

.new-banner-nav-desc {
    font-size: 14px;
    color: #666;
}

/* 动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* 响应式设?*/
@media (max-width: 1200px) {
    .new-banner-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 140px 20px;
        justify-content: center;
    }
    
    .new-banner-content {
        max-width: 100%;
        margin-bottom: 40px;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .new-banner-btn-group {
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .new-banner-video-bg,
    .new-banner-nav-controls {
        display: none!important;
        content-visibility: hidden!important;
        visibility: hidden!important; 
        overflow: hidden!important;
    }
    
    .new-banner-image-bg {
        display: block;
    }
    
    .new-banner-dots {
        bottom: 100px;
        display: flex;
    }
    
    .new-banner-text-nav {
        display: none;
    }
    
    .new-banner-area {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}
    .new-banner-content {
        position: static;
        transform: none;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
        opacity: 1;
        pointer-events: auto;
    }
    
    .new-banner-content:not(.active) {
        display: none;
    }
    
    .new-banner-area::before {
        opacity: 0;
    }
    
    .new-banner-wrapper {
        min-height: 500px;
        padding: 100px 20px 120px;
    }
    
    .new-banner-content h1 {
        font-size: 36px;
    }
    
    .new-banner-content p {
        font-size: 16px;
    }
    
    .new-banner-nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .new-banner-nav-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
    
    .new-banner-nav-item {
        flex-direction: row;
        padding: 15px 10px;
        gap: 10px;
    }
    
    .new-banner-nav-icon {
        display: block;
        width: 40px;
        height: 40px;
        object-fit: contain;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .new-banner-nav-title {
        font-size: 14px;
        font-weight: 350;
        margin-bottom: 0;
        text-align: left;
    }
    
    .new-banner-nav-desc {
        display: none;
    }
}

@media (max-width: 768px) {
    .new-banner-nav-item:hover {
    background: #f5f5f500 !important;
}
    .new-banner-video-bg {
        display: none!important;
        content-visibility: hidden!important;
        visibility: hidden!important; 
        overflow: hidden!important;
    }
    
    .new-banner-image-bg {
        display: block;
    }
    
    .new-banner-area::before {
        opacity: 0;
    }
    
    .new-banner-area {
        min-height: 520px;
        margin: 15px;
        margin-right: 15px;
        border-radius: 16px;
        overflow: visible;
        box-sizing: border-box;
        width: calc(100% - 30px);
        position: relative;
        left: 0;
        right: 0;
    }
    
    .new-banner-image-bg {
        border-radius: 16px;
        height: calc(100% - 220px);
    }
    
    .new-banner-wrapper {
        min-height: 450px;
        padding: 50px 20px 60px;
    }
    
    .new-banner-content h1 {
        font-size: 1.8em;
    }
    
    .new-banner-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .new-banner-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .new-banner-btn-group {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .new-banner-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .new-banner-nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 0 0 16px 16px;
        bottom: 130px;
        margin-bottom: 0;
        z-index: 1;
    }
    
    .new-banner-nav-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .new-banner-nav-item {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 1px;
        gap: 3px;
        border-right: none !important;
    }
    
    .new-banner-nav-icon {
        display: block;
        width: 36px;
        height: 36px;
        object-fit: contain;
    }
    
    .new-banner-nav-title {
        font-size: 0.9em;
        font-weight: 350;
        margin-bottom: 0;
        text-align: center;
    }
    
    .new-banner-nav-desc {
        display: none;
    }
    
    .new-banner-nav-controls {
        padding: 0 15px;
    }
    
    .new-banner-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .new-banner-dots {
        bottom: 240px;
        gap: 10px;
    }
    
    .new-banner-dot {
        width: 18px;
        height: 18px;
    }
    .cloud-services-area {
    background-color: #ffffff;
    margin-top: -160px !important;
}
}
/* Cloud Services Area */
.cloud-services-area {
    background-color: #ffffff;
}

/* Cloud Services Categories */
.cloud-services-categories {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

.cloud-services-category-item {
    font-size: 18px;
    font-weight: 500;
    color: #666666;
    cursor: pointer;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.cloud-services-category-item:hover,
.cloud-services-category-item.active {
    color: #333333;
    border-bottom-color: #333333;
}

.cloud-services-content {
    position: relative;
}

.cloud-services-category-content {
    display: none;
}

.cloud-services-category-content.active {
    display: block;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.cloud-service-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.cloud-service-feature {
	background-image: url('/plugins/img/sale01.png');
	background-size: cover;
	background-position: center;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
	padding: 40px;
	min-height: 530px;
	border: none;
	background-color: #FAFAFA;
}



.cloud-service-feature:hover {
    box-shadow: inset 0 0 15px rgba(102, 126, 234, 0.3), inset 0 0 8px rgba(118, 75, 162, 0.2), inset 0 0 5px rgba(255, 105, 180, 0.2);
}

.cloud-service-feature-computing {
    background-image: url('/plugins/img/sale02.jpg');
}

.cloud-service-feature-computing-small {
    background-image: url('/plugins/img/sale02.jpg');
    min-height: 255px;
    height: 255px;
    margin-bottom: 10px;
}



.cloud-service-feature-computing2-small {
    background-image: url('/plugins/img/sale06.png');
    min-height: 255px;
    height: 255px;
    margin-bottom: 10px;
}


.cloud-service-feature-workstation {
    position: relative;
    overflow: hidden;
    background-image: url('/plugins/img/sale03.png');
    background-size: cover;
    background-position: center;
}

.cloud-service-feature-SQL {
    background-image: url('/plugins/img/sale014.jpg');
    background-size: cover;
    background-position: center;
}
.cloud-service-feature-storage {
    background-image: url('/plugins/img/sale07b.jpg');
    background-size: cover;
    background-position: center;
}

.cloud-service-feature-workstation img,
.cloud-service-feature-workstation h2,
.cloud-service-feature-workstation p,
.cloud-service-feature-workstation .detail-btn {
    position: relative;
    z-index: 10;
}

.computing-row {
    display: flex;
    flex-wrap: wrap;
}

.computing-row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.codearts-logo {
    max-width: 52px;
    max-height: 50px;
    border-radius: 15%;
    margin-bottom: 20px;
}

.cloud-service-feature h2 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: #333333;
}


.cloud-service-feature p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 25px;
    max-width: 70%;
}


.detail-btn {
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    padding: 8px 20px;
    border-radius: 20px;
    transition: none;
    width: fit-content;
    background-color: #ffffff;
}

.cloud-service-grid {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cloud-service-grid .row {
    margin: 0 -8px;
    height: 100%;
}

.cloud-service-grid .col-lg-6,
.cloud-service-grid .col-lg-12 {
    padding: 0 8px;
    margin-bottom: 10px;
}

.cloud-service-box {
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 255px;
	display: flex;
	flex-direction: column;
	padding: 30px;
	border: 1px solid #f0f0f0;
	margin-bottom: 10px;
}

/* ECS Card */
.ecs-box {
    background-color: #FFFFFF;
}

/* OBS Card */
.obs-box {
    background-color: #FFFFFF;
}

/* GaussDB Card */
.gaussdb-box {
    background-color: #FFFFFF;
}

/* SecMaster Card */
.secmaster-box {
    background-color: #FFFFFF;
}

.cloud-service-box:hover {
    box-shadow: inset 0 0 15px rgba(102, 126, 234, 0.3), inset 0 0 8px rgba(118, 75, 162, 0.2), inset 0 0 5px rgba(255, 105, 180, 0.2);
    border-color: #e0e0e0;
}

.cloud-service-box .icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.cloud-service-box .icon img {
    border-radius: 15%;
}
.cloud-service-box-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cloud-service-box h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333333;
}

.cloud-service-box p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.5;
}

.cloud-service-box .detail-btn {
    margin-top: auto;
}

.stats-card {
    padding: 20px 10px;
    margin-bottom: 0;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: none;
    box-shadow: none;
}

.stats-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    padding: 0;
}

.stats-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stats-card h3 {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 0;
    color: #333333;
}

.stats-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}



.view-all-products {
    border: 1px solid #e0e0e0;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #ffffff;
    margin-top: 15px;
}

.view-all-products:hover {
    background-color: #f5f5f5;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

@media only screen and (max-width: 1200px) {
    .banner-nav-item {
        font-size: 16px !important;
        padding: 20px 15px !important;
    }
    .banner-nav-item span {
        font-size: 14px !important;
    }
    

}

@media only screen and (max-width: 992px) {
    .new-banner-nav-item:hover {
    background: #f5f5f500 !important;
}
    .banner-nav-item {
        font-size: 14px !important;
        padding: 15px 10px !important;
    }
    .banner-nav-item span {
        font-size: 12px !important;
    }
    
    .cloud-service-feature:not(.cloud-service-feature-SQL) {
        margin-bottom: 30px;
        min-height: 300px;
    }
    
    .cloud-service-feature-SQL {
        margin-bottom: 30px;
        min-height: 300px;
    }
    
    .cloud-service-grid .col-lg-6 {
        height: auto;
    }
    .cloud-services-categories {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}
}

@media only screen and (max-width: 768px) {
.cloud-services-categories {
    display: none;
}
.cloud-services-category-item {
    font-size: 1.1em;
    font-weight: 500;
    color: #666666;
    cursor: pointer;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.service2 {  display:none;
}

/* ȫ޸ʹ Bootstrap ϵͳƶ˲ */
.container {
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

.row {
    margin-right: -15px !important;
    margin-left: -15px !important;
}

[class*="col-"] {
    padding-right: 15px !important;
    padding-left: 15px !important;
}

.cloud-service-grid .noma {
    padding: 0 8px;
    margin-bottom: 0!important;
}

.cloud-service-box p {
    font-size: 13px;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.5;
}



.cloud-service-feature h2 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: #333333;
}

.cloud-service-feature p {
    font-size: 13px;
    color: #666666;
    margin-bottom: 25px;
    max-width: 70%;
}



    .banner-bottom-nav {
        position: relative;
        z-index: 10;
        background-color: rgba(255, 255, 255, 0.7);
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        margin-top: 0;
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
        border-radius: 8px;
    }
    .banner-bottom-nav .container {
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    .banner-bottom-nav .row {
        margin: 0 !important;
    }
    .banner-bottom-nav .col-md-12 {
        padding: 0 !important;
    }
    .banner-bottom-nav div {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    .banner-nav-item {
        border-right: none !important;
        
        font-size: 16px !important;
        padding: 20px !important;
        text-align: center !important;
    }
    .banner-nav-item:last-child {
        border-bottom: none !important;
    }
    .banner-nav-item span {
        font-size: 14px !important;
    }
    
    .cloud-service-feature {
        margin-bottom: 30px;
        min-height: 300px;
        padding: 30px;
    }
    
    .cloud-service-feature p {
        max-width: 100%;
    }
    
    .cloud-service-grid .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 8px !important;
    }
    
    .cloud-service-box {
        margin-bottom: 20px;
        flex-direction: row;
        align-items: flex-start;
        height: 110px;
    }
    
    .cloud-service-box .icon {
        margin-bottom: 0;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .cloud-service-box-content {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
}

/* Corporate Accordion Area */
.corporate_accordion_area {
	padding: 30px 0 40px 0;
	background-color: #ffffff;
}

.single_image_area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.single_image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.witr_section_title_inner h2 {
    font-size: 20px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
}

.witr_section_title_inner h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}



.faq-part {
    padding: 0;
}

.card {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;
    background-color: #fff;
    box-shadow: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card:last-child {
    margin-bottom: 0;
}

.card-header {
    padding: 0 !important;
    background-color: #fff !important;
    border: none !important;
}

.witr_ac_card {
    padding: 0;
}

.witr_ac_style {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    background-color: #fff;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
}

.witr_ac_style:hover {
    color: #333;
    text-decoration: none;
    background-color: #f9f9f9;
}

.witr_ac_style:focus {
    outline: none;
    box-shadow: none;
}

.toggle-icon {
        font-size: 18px;
        transition: all 0.3s ease;
        width: 20px;
        text-align: center;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .witr_ac_style.collapsed .toggle-icon {
        transform: rotate(0deg);
    }

    .witr_ac_style:not(.collapsed) .toggle-icon {
        transform: rotate(45deg);
    }

    /* 隐藏Bootstrap默认的关闭按?*/
    .btn-link .close {
        display: none !important;
}

.card-body {
    padding: 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #f5f5f5;
}

/* FAQ Styles */
.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;
    background-color: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-answer {

    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    background-color: #fff;
}

.faq-item.active .faq-question {
    background-color: #f5f5f5;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.card-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Accordion active state */
.card.show .witr_ac_style {
    background-color: #f5f5f5;
    color: #333;
}

/* Responsive for Corporate Accordion */
@media only screen and (max-width: 991px) {
    .corporate_accordion_area {
        padding: 80px 0;
    }
    
    .single_image_area {
        margin-bottom: 40px;
    }
    
    .witr_section_title_inner h3 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 767px) {
    .corporate_accordion_area {
        padding: 60px 0;
    }
    
    .witr_section_title_inner h3 {
        font-size: 24px;
    }
    
    .witr_ac_style {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .card-body {
        padding: 15px;
    }
}

/* Solutions Area */
.solutions-area {
    background-color: #fff;
    overflow-x: hidden;
    position: relative;
}

.solutions-area .section-title .sub-title {
    color: #00aaff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solutions-area .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
}

.solutions-categories {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

.category-item {
    font-size: 18px;
    font-weight: 500;
    color: #666666;
    cursor: pointer;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.category-item:hover,
.category-item.active {
    color: #333333;
    border-bottom-color: #333333;
}

.solutions-content {
    position: relative;
}

.solutions-category-content {
    display: none;
}

.solutions-category-content.active {
    display: block;
}

.solution-card {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    min-width: 300px;
    flex-shrink: 0;
}

.solution-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.solution-image {
    position: relative;
    height: 400px;
    width:611px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover .solution-image img {
    transform: scale(1.1);
}

.solution-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    padding: 40px 30px 30px;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    background-color: #00aaff;
    transform: scale(1.1);
}

.solution-icon i {
    font-size: 24px;
    color: #ffffff;
}

.solution-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.solution-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #ffffff;
}

.solution-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.solution-btn:hover {
    background-color: #00aaff;
    color: #ffffff;
    border-color: #00aaff;
    transform: translateX(5px);
    text-decoration: none;
}

/* Responsive for Solutions Area */
@media only screen and (max-width: 991px) {
    .solution-image {
        height: 350px;
        width: 100%;
        max-width: 100%;
    }
    
    .solution-content {
        padding: 30px 20px 20px;
    }
    
    .solution-content h3 {
        font-size: 18px;
    }
    
    .solutions-area .section-title h2 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {

.cloud-services-support-area .section-title h2 {
    font-size: 28px!important;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 0;
}

    .solution-card {
        margin-bottom: 20px;
    }
    
    .solution-image {
        height: 300px;
        width: 100%;
        max-width: 100%;
    }
    
    .solution-content {
        padding: 25px 15px 15px;
    }
    
    .solution-content h3 {
        font-size: 16px;
    }
    
    .solutions-area .section-title h2 {
        font-size: 24px;
    }
}

/* Service Support Area */
.service-support-area {
    background-color: #fff;
    maring:20px 0;
}

.service-support-wrapper {
    display: flex;
    gap: 1px;
    flex-wrap: wrap;
    background-color: #e0e0e0;
    overflow: hidden;
}

.service-support-item {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    background-color: #f6f6f6;
    transition: none;
}

.service-support-item:hover {
    transform: none;

}

.service-support-image {
    flex: 0 0 200px;
    height: 200px;
}

.service-support-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-support-content {
    flex: 1;
    padding: 30px;
}

.service-support-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.service-support-content p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-support-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00aaff;
    color: #ffffff;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-support-btn:hover {
    background-color: #0099dd;
    transform: translateX(5px);
    text-decoration: none;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 767px) {


.solutions-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}




.category-item {
    font-size: 1.1em;
    font-weight: 500;
    color: #666666;
    cursor: pointer;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}



    .service-support-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-support-item:nth-child(2) {
        flex-direction: column-reverse;
    }
    
    .service-support-image {
        flex: 0 0 150px;
        width: 100%;
    }
    
    .service-support-content {
        padding: 20px;
    }
}

/* Solutions Slider */
.solutions-slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 -15px;
    padding: 0 15px;
}

.solutions-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 0 15px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: #00aaff;
    color: #ffffff;
    border-color: #00aaff;
}

.slider-btn-left {
    left: 0;
}

.slider-btn-right {
    right: 0;
}



/* IDC Map Area */
.idc-map-area {
	background-color: #ffffff;
	padding: 60px 0 20px;
}

.idc-map-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.idc-map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.idc-map-image {
    width: 100%;
    height: auto;
    display: block;
}

.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #333333;
}

/* Cloud Services Support Area */
.cloud-services-support-area {
    background-color: #f5f5f5;
    padding-top: 80px;
    padding-bottom: 60px;
}

.cloud-services-support-area .container-fluid {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 10px;
}

.cloud-services-support-area .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 0;
}

.cloud-services-support-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 24px;
}

.cloud-services-support-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cloud-services-support-right-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

.cloud-services-support-right-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cloud-services-support-right-top-small {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cloud-services-support-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 48px 40px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-card {
    max-height: 450px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cloud-services-support-right .cloud-services-support-card {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 200px;
}

.cloud-services-support-right .contact-card {
    padding: 48px 40px;
}

.cloud-services-support-card:hover {
    box-shadow: inset 0 0 15px rgba(102, 126, 234, 0.3), inset 0 0 8px rgba(118, 75, 162, 0.2), inset 0 0 5px rgba(255, 105, 180, 0.2);
    border-color: #e0e0e0;
}

.support-card-icon {
    width: 48px;
    height: 44px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 16px;
    background-color: transparent !important;
}

.support-card-icon img {
    width1: 48PX;
    height1: 45PX;
    object-fit: contain;
    border-radius: 15%;
}


.cloud-services-support-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: #1f1f1f;
	margin: 0 0 12px 0;
}

.cloud-services-support-card p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

.cloud-services-support-card .detail-btn {
	margin-top: 36px;
	margin-left: 0;
	margin-right: 0;
}

.contact-options {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-option-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background-color: #f8f8f8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-option-item:hover {
    background-color: #f0f0f0;
}

.contact-option-item i:first-child {
    font-size: 18px;
    color: #555555;
}

.contact-option-item span {
    flex: 1;
    font-size: 14px;
    color: #222222;
    font-weight: 600;
}

.contact-option-item i:last-child {
    font-size: 18px;
    color: #aaaaaa;
}

/* Responsive for Cloud Services Support Area */
@media (max-width: 1200px) {
    .cloud-services-support-grid {
        grid-template-columns: 1fr;
    }
    
    .cloud-services-support-right {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .cloud-services-support-right {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cloud-services-support-right {
        grid-template-columns: 1fr;
    }
    
    .cloud-services-support-right-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cloud-services-support-right-top-small {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cloud-services-support-card {
        padding: 24px 20px;
    }
    
    .cloud-services-support-right .cloud-services-support-card {
        padding: 20px 16px;
        min-height: auto;
    }
    
    .cloud-services-support-right .cloud-services-support-card .detail-btn {
        display: none;
    }
    
    .support-card-icon {
        width: 42px;
        height: 42px;
        font-size: 28px;
    }
    
    .cloud-services-support-card h3 {
        font-size: 16px;
        font-weight: 600;
    }
    
    /* ֻ²֣ͼ󣬱ϣ */
    .support-card-content-row {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }
    
    .support-card-content-row .support-card-icon {
        flex-shrink: 0;
        margin-bottom: 10px;
    }
    
    .support-card-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .support-card-text h3 {
        margin: 0 0 8px 0;
    }
    
    .support-card-text p {
        margin: 0;
    }
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.region-dot {
    background-color: #6699ff;
}

.ec-dot {
    background-color: #4caf50;
}

/* Map Legend */
.map-legend {
    position: absolute;
    top: auto;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    gap: 18px;
    z-index: 10;
    width: fit-content;
}

.map-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot-operating {
    background-color: #0066cc;
}

.legend-dot-deploying {
    background-color: #ff3333;
}

.legend-text {
    font-size: 12px;
    font-weight: 500;
    color: #333;
}

@media (max-width: 1200px) {
    .map-legend {
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .map-legend {
        gap: 12px;
        padding: 6px 12px;
    }
    
    .legend-text {
        font-size: 11px;
    }
    
    .legend-dot {
        width: 8px;
        height: 8px;
    }
}

/* Map Markers */
.map-marker {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333333;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
}

/* Show all map markers on mobile devices */
@media (max-width: 767px) {
    .map-marker {
        display: flex;
    }
}

.marker-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.marker-label {
    font-weight: 500;
    font-size: 14px;
}


@media (min-width: 992px) {
    .map-marker {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333333;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
}
    

    
    .map-marker .marker-dot {
        width: 16px;
        height: 16px;
    }
    
    /* 电脑版单独设置位?*/
        .map-marker-china {
        top: 30%;
        left: 40%;
    }
    
    .map-marker-hk {
        top: 47%;
        left: 41%;
    }
    
    .map-marker-jp {
        top: 34%;
        left: 49%;
    }
    
    .map-marker-sg {
        top: 58%;
        left: 39%;
    }
    .map-marker-london {
        top: 27%;
        left: 12%;
    }
    .map-marker-us {
        top: 35%;
        left: 77%;
        flex-direction: row-reverse;
    }
    .map-marker-us-east {
        top: 32%;
        left: 85%;
        flex-direction: row-reverse;
    }
}

/* Responsive for IDC Map Area */
@media only screen and (max-width: 991px) {
    .map-marker-china {
        top: 22%;
        left: 24%;
    }
    
    .map-marker-hk {
        top: 40%;
        left: 26%;
    }
    
    .map-marker-jp {
        top: 30%;
        left: 42%;
    }
    
    .map-marker-sg {
        top: 52%;
        left: 42%;
    }
    .map-marker-london {
        top: 24%;
        left: 2%;
    }
    .map-marker-us {
        top: 26%;
        left: 63%;
        flex-direction: row-reverse;
    }
    .map-marker-us-east {
        top: 13%;
        left: 70%;
        flex-direction: row-reverse;
    }

    .idc-map-header h2 {
        font-size: 28px;
    }
.location-card-container {
                    display: none !important;
                }
    .map-marker {
        font-size: 40px;
        padding: 8px 14px;
    }
    
    .map-marker-china,
    .map-marker-hk {
        flex-direction: row-reverse;
    }
    .map-marker {
                    transform: scale(0.7);
                }
    .marker-dot {
        width: 14px;
        height: 14px;
    }
    
    .marker-label {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .idc-map-area {
	padding: 60px 0 20px 0;
}
    
    .idc-map-header h2 {
        font-size: 24px;
    }
    
    .map-legend {
        position: static;
        margin-top: 15px;
        justify-content: center;
        margin-left: 22%;
    }
}





.font20 {
	font-size: 18px;
	
}
@media only screen and (max-width: 768px) {
    .cloud-service-box .detail-btn {
        display: none;
    }

    .cloud-service-grid .col-lg-6 {
        margin-bottom: 0!important;
    }
    
    .features-area .row .col-lg-3 {
        margin-bottom: 20px;
    }
    
    .features-area .row .col-lg-3:last-child {
        margin-bottom: 0;
    }
}
.font20 {
	font-size: 18px;
	
}

.cta-image-mobile {
    display: none;
}

@media (max-width: 767px) {
    .cta-image-desktop {
        display: none;
    }
    .cta-image-mobile {
        display: block;
        width: auto;
        height: 180px;
        margin: 0 auto;
    }
    .cta-content p {
        display: none;
    }
}

/* Cloud AI Area */
.cloud-ai-area {
	background-color: #ffffff;
	padding-top: 40px;
	padding-bottom: 60px;
}

.cloud-ai-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cloud-ai-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: none;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    position: relative;
    aspect-ratio: 3 / 4;
}

.cloud-ai-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
}

.cloud-ai-card:hover::after {
    opacity: 1;
    box-shadow: inset 0 0 15px rgba(102, 126, 234, 0.3), inset 0 0 8px rgba(118, 75, 162, 0.2), inset 0 0 5px rgba(255, 105, 180, 0.2);
}

.cloud-ai-card:hover {
    border-color: #e0e0e0;
}

.cloud-ai-card-video {
    position: absolute;
    top: 0;
    left: -2px;
    width: 101%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.cloud-ai-card-content,
.cloud-ai-card-image {
    position: relative;
    z-index: 10;
}

.cloud-ai-card-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: white;
    font-size: 12px;
    z-index: 10;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}





.cloud-ai-card-maas {
}

.cloud-ai-card-agentarts {
    background-image: none;
}

.cloud-ai-card-content {
    padding: 30px;
}

.cloud-ai-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.cloud-ai-card-content p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.5;
}
.cloud-ai-card-content a:hover {
    color: #666666!important;
}
.cloud-ai-card-image {
    padding: 0 30px 30px;
    margin-top: auto;
    display: none;
    align-items: flex-end;
    justify-content: center;
}
.cloud-ai-img {
	    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.5s ease;
}
.cloud-ai-card-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive for Cloud AI Area */
@media (max-width: 1200px) {
    .cloud-ai-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .cloud-ai-grid {
        grid-template-columns: 1fr;
    }
    
    .cloud-ai-card {
        min-height: auto;
        background-image: none !important;
        flex-direction: row;
        align-items: center;
        aspect-ratio: auto;
    }
    .cloud-ai-img {
    display:none;
    }
    .cloud-ai-card-content {
        flex: 1;
        padding: 20px;
    }
    
    .cloud-ai-card-content h3 {
        font-size: 15px;
    }
    
    .cloud-ai-card-content p {
        font-size: 12px;
    }
    
    .cloud-ai-card-video {
        display: none !important;
        content-visibility: hidden!important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .cloud-ai-card-hint {
        display: none !important;
    }
    
    .cloud-ai-card-image {
        display: flex;
        flex: 1;
        padding: 15px;
        margin-top: 0;
    }
}
.pt65 {
	padding-top: 65px;
}
.service2 { }
