/* Global Banner */

.comp_container {
    max-width: 1280px;
    margin: 0 auto;
    /*padding: 0 20px;*/
    position: relative;
    z-index: 1;
}

.pagebanner-title {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pagebanner-description {
    font-size: 15px;
    margin: 20px 0;
}

.pagebanner-button .fancy-button1 {
    display: inline-block;
      width: 172px;
    height: 40px;
    background: linear-gradient(90deg, #282b31, #565861);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
    line-height: 40px;
    
    
}

.pagebanner-button .fancy-button1:hover {
      background: linear-gradient(90deg, #505153, #646870);
    color: #fff;
}
.pagebanner-button .fancy-button2 {
    display: inline-block;
      width: 172px;
    height: 40px;
 
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;

    text-align: center;
    cursor: pointer;
    margin-right: 20px;
    line-height: 40px;
    
    color: #3d6cfc;
    background: transparent;
    border: 1px solid #3d6cfc;
    box-sizing: border-box;
}

.pagebanner-button .fancy-button2:hover {
    background: linear-gradient(90deg, #3d6cfc, #669aff);
    color: #fff;
}

/* Tabs Section */
.cloud-tabs_bg {
    background: linear-gradient(180deg, #e9eef7, #fff);
    padding: 30px 0;
   
}

.cloud-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cloud-tab-button {
    flex: 1;
    border: none;
   
}

.cloud-tab-button.selected {
    background-color: #6462F3;
    color: #ffffff;
}

.cloud-tab-button h1 {
    font-size: 16px;
    margin: 0;
    padding: 10px;
    color: black;
}




/* 父容器设置 */
.hero-section {
   max-width: 1280px;
   margin: 0 auto;
    align-items: center;
    padding: 10px 10px;
    border-bottom: 2px solid #f4f4f4;
}

/* 内容容器设置 */
.content-wrapper {
    width: 100%;
    max-width: 1200px; /* 可调整宽度 */
}

/* Tabs 列表设置 */
.tabs-list {
     display: flex;
    /*justify-content: space-evenly;*/
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Tab 项设置 */
.tab-item {
    text-align: center;
    font-size: 16px;
    padding: 10px 10px; /* 调整水平内边距以适应内容 */
    margin-right: 30px;
}

/* 活动项设置 */
.tab-item.active {
    font-weight: bold;
    
}

/* Tab 选择器动画设置 */
.tab-slider {
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}
.globalBanner {
      height: 210px;
     width: 100%; 
    background-color: #fff;
    /*margin-top: 66px;*/
    color: black;
    padding: 150px 0px 20px;
    position: relative;
    overflow: hidden;
    text-align: left;
}
    .globalBanner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  
    z-index: 0;
}
/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .globalBanner {
    margin-top: 66px;
    }
    .tab-item {
    padding: 10px 4px;
     margin-right: 1px; 
    }
    .comp_container {
   
    padding: 0 0px;
    text-align: center;
  
}
.pagebanner-button .fancy-button1 {
    margin-left: 20px;
}
}