/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
    font-family: 微软雅黑;

	color: #a60909;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #666;
}

/* 头部样式 */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 10px 150px;
    /*box-shadow: 0 2px 4px rgba(0,0,0,0.05); */
    margin: 0 auto;
    /* max-width: 1460px; */
    
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    display: flex;
    align-items: center;
}

.logo img{
    height:50px;
    margin-right: 10px;
}


nav li {
    cursor: pointer;
    font-size: 16px;
}

.search-bar input {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-bar button {
    padding: 6px 12px;
    margin-left: 8px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* 主内容区域 */
.main-content {
    /* padding: 20px; */
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding-bottom: 50px;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* 搜索框 */
.search-box {
    display: flex;
    margin-bottom: 20px;
    max-width: 500px;
    width: 500px;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-box button {
    padding: 8px 16px;
    margin-left: 8px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* 选项卡样式 */
.tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 80%;
    background-color: #404040;
}

.tabs button {
    padding: 10px 20px;
    background-color: transparent;
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    /* border-bottom: 2px solid transparent; */
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    color: #fff;
    position: relative;
    padding-right: 15px;
    /* border-right: solid 1.5px gray; */
}
  
.tabs button.active {
    /* color: #007bff; */
    /* border-color: #007bff; */
    color: #fff;

    background-color: #c7000b;  /* 红色背景 */
    position: relative;     /* 为伪元素提供相对定位上下文 */
    z-index: 5;             /* 防止遮挡 */
}



  /* 右侧伪边框（默认状态） */
/* .tabs button::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5px;
    height: 50%;
    background-color: gray;
    z-index: 1;
} */

.tabs button::after {
  content: '';
  position: absolute;
  right: -0.1px;
  top: 50%;
  transform: translateY(-50%);
  width: 0.4px;
  height: 50%;
  background-color: gray;
  z-index: 2;
}


/* 激活态三角形（使用 ::before） */
.tabs button.active::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #c7000b;
    display: block;
    z-index: 2;
}
  
  /* 鼠标悬停时显示三角形 */
  .tabs button.active::after {
    display: block;
  }



/* 内容区 */
.content-section {
    /* display: flex; */
    gap: 20px;
    max-width: 80%;
    margin: 0 auto;
}

.sidebar {
    width: 11%;
    background-color: #eeeeee;
    border-radius: 4px;
}
nav ul{
    display: flex;
    list-style: none;
    gap: 40px;
    margin-bottom: unset;
}
.sidebar ul {
    list-style: none;
    margin-block-start:unset;
    margin-block-end:unset;
    padding-inline-start:unset;
}

.sidebar li {
    /* margin-bottom: 10px; */
    height: 50px;
    display: flex;
    align-items: center;
    line-height: 50px;
    padding-left: 10px;
    border-bottom: solid 1px #ddd;
}

.sidebar a {
    color: #333;
    font-size: 18px;
}

.main-area {
    flex: 1;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: rgba(228, 226, 226, 0.38);;
    font-weight: bold;
}

/* 页脚 */
footer {
    text-align: center;
    padding: 20px;
    background-color: #404040;
    /* margin-top: 40px; */
    font-size: 14px;
    color: #ffffff;
    margin: 0 auto;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
    }

    .tabs {
        overflow-x: auto;
        white-space: nowrap;
    }

    .tabs button {
        white-space: nowrap;
    }
}

/* 选项卡内容 */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    display: flex;
}

.tab-content .slide-tab-content .active {
    display: flex;
}


.enterprise-banner{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background: url(/assets/banner01.jpg) no-repeat 50%;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    height: 400px;
}

.enterprise-banner .banner-title {
    color: #fff;
    font-size: 52px;
    font-weight: 400;
    margin: 0;
    padding: 100px 0 55px;
    position: relative;
    text-align: center;
}

.search-favorites {
    font-size: 14px;
    margin: 0 auto;
    position: relative;
    width: 730px;
    max-width: 730px;
}

.custom-search{
    margin-left: -25px;
}


.custom-search-red{
    color: red;
    padding-top: 4px;
}


.search-to-left{
    position: relative;
    margin-left: auto;
    margin-right: 20px;
    line-height: 44px;
}


.vertical-line{
    display: flex;
    height: 50px;
    line-height: 50px;
    background-color: #efefef;
    padding-left: 10px;
}

.down-div{
    margin-left: 15px;
}

.count-div{
    color: #8e93b0;
    font-weight: 100;
}

.cuIcon-info-gray{
    color: #8e93b0;
    font-weight: 100;
}

.th-white{
    background-color: white;
}

.cuIcon-lock-gold{
    color: gold;
}

.section-top{
    background-color: #efefef;
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.select-version{
    display: flex;
    height: 50px;
    align-items: center;
    padding-left: 10%;
}

.select-order{
    display: flex;
    height: 50px;
    align-items: center;
    padding-right: 5%;
}

.section-top select{
    padding: 5px;
    color: gray;
    border: unset;
}



.section-top-soft{
    background-color: #efefef;
    height: 100px;
    width: 100%;
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
    margin-bottom: 15px;
}

.select-version-soft{
    display: flex;
    height: 50px;
    align-items: center;
    padding-left: 15px;
}

.select-order-soft{
    display: flex;
    height: 50px;
    align-items: center;
    padding-left: 15px;
}

.section-top-soft select{
    padding: 5px;
    color: gray;
    border: unset;
}


.slide-active{
    background-color: #FFFFFF;
    color: red;
}

.slide-tab-content{
    display: none;
}

.slide-tab-content.active{
    display: block;
    width: 75%;
    margin-left: 1%;
}

.siderbar-title{
    height: 40px;
    line-height: 40px;
    color: rgb(85, 84, 84);
    padding-left: 15px;
    font-size: 14px;
}

.siderbar-title.size16{
    font-size: 16px;
}

.siderbar-title.size12{
    font-size: 12px;
}

.downlist{
    display: none;
}

.downlist div{
    height: 24px;
    line-height: 24px;
    padding-left: 20px;
    font-size: 12px;
}


.hr_line{
    width: 85%;
    position: relative;
    margin-left: 15px;
    margin-bottom: 5px;
}

.td-size{
    font-size: 12px;
    color: gray;
}


/* Tooltip Base Style */
.info-tooltip {
    position: absolute;
    background-color: #ffffff; /* White background */
    color: gray; /* Black text */
    padding: 8px 12px;
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px;
    font-size: 12px;
    /* white-space: nowrap; */
    z-index: 10;
    /* top: 100%; */
    /* left: 50%;
    transform: translateX(-50%); */
    position: absolute;
    width: 180px;
    height: auto;
  }
  
  /* Arrow (Triangle) */
  .tooltip-arrow {
    position: absolute;
    top: -6px; /* Positioned above the tooltip */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ccc; /* Matches border color */
  }

 