.common-container {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.common-container .common-header {
    margin-top: 60px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    line-height: 46px;
}

.common-container .common-header .more{
    color: rgba(0, 0, 0, 0.60);
    font-size: 16px;
    font-weight: 400;
}

.common-container .common-header .more:hover{
    color: #106FFF;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

/* 快捷入口 */
.quick-access {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;

    /* gap:20px; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.quick-access .quick-access-item {
    width: 387px;
    height: 280px;
    display: flex;
    flex-direction: row;
    border-radius: 12px;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 0px 10px 0px rgba(0, 19, 49, 0.1);
    box-sizing: border-box;
}

.quick-access .quick-access-item:hover {
    background-color: #F3F8FF;
}

.quick-access .item-commom {
    background-repeat: no-repeat;
    /* 防止图片重复 */
    background-position: center;
    /* 水平和垂直居中 */
    background-size: 100%;
    margin-top: 20px;

}

.quick-access .quick-access-icon {
    width: 56px;
    height: 56px;
    margin-top: 40px;
    border-radius: 50%;
}

.quick-access .quick-access-name {
    text-align: center;
}

.quick-access .quick-access-name h3 {
    color: rgba(0, 0, 0, 0.80);
    font-size: 20px;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 8px;
}

.quick-access .quick-access-name h3:hover {
    color: #106FFF;
    font-size: 20px;
    font-weight: 400;
}

.quick-access .quick-access-name .quick-access-desc {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    font-weight: 400;
}

/* 专利许可开放 */
.table-container {
    width: 100%;
    background: white;
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background-color: #E3EEFF;
    color: #106FFF;
}

th {
    height: 64px;
    padding: 0 24px;
    text-align: left;
    font-weight: 600;
    font-size: 20px;
    box-sizing: border-box;
}

.th-width {
    width: 150px;
}

tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
    height: 64px;
    box-sizing: border-box;
}

tbody tr:hover {
    background-color: #f8fafc;
    cursor: pointer;
}

tbody tr:nth-child(2n) {
    background-color: #FAFAFA;
}

td {
    padding: 0 24px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.60);
}

.project-id, .project-name {
    color: #000000;
    font-weight: 400;
}

.price {
    font-weight: 500;
    color: #000;
}

/* 服务平台 */
.service-platform-container {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 76px;
}

.service-platform-card{
    width: 228px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: #F0F3F7;
    border-radius: 8px;
    font-size: 16px;
    color: #000000;
    text-align: center;
}

.service-platform-card:hover {
    background-color: #106FFF;
    color: #FFFFFF;
}

.service-platform-card div {
    margin: 24px 10px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* 轮播图样式 */
.carousel-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.carousel {
    position: relative;
    height: 666px;
    overflow: hidden;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: url('/assets/home/img/lunbo-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 84px 0;
}

.carousel-slide .slide-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.carousel-slide .slide-top .slide-more {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.60);
    font-weight: 400;
}

.carousel-slide .slide-top .slide-more:hover {
    cursor: pointer;
    color: #FFFFFF;
}


.carousel-slide .slide-title {
    font-size: 32px;
    color: #FFFFFF;
    font-weight: 600;
}



.carousel-slide.active {
    opacity: 1;
}

/* .slide-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.slide-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.slide-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
} */

.slide-content {
    flex: 1;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.slide-content .slide-main-item {
    width: 600px;
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    box-sizing: border-box;
    z-index: 10;
    position: relative;
}

.slide-content .slide-main-item:hover {
    cursor: pointer;
}

.slide-content .slide-item{
    position: absolute;
    transform: translateY(-50%);
    width: 400px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    box-sizing: border-box;
    z-index: 5;
    top: 54%;
    filter: brightness(0.7);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.slide-content .slide-left-item {
    left: 0;
}

.slide-content .slide-right-item {
    right: 0;
}

.slide-content .slide-left-item .slide-pic,  .slide-content .slide-right-item .slide-pic{
    width: 400px;
    height: 280px;
}

.slide-content .slide-main-item .slide-pic {
    width: 600px;
    height: 348px;
}

.slide-content .slide-main-item .slide-text {
    width: 100%;
    font-size: 24px;
    font-weight: 600;
    line-height: 72px;
    color: #106FFF;
    background: #FFF;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s;
    background-size: cover;
}

.carousel-control:hover {
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    background-image: url('/assets/home/img/pre-btn.png');
    left: 7vw;
}

.carousel-control.next {
    background-image: url('/assets/home/img/next-btn.png');
    right: 7vw;
}

/*新闻动态*/
.news-box {
    width: 100%;
    background: #FFFFFF;
}
.left-news {
    width: 580px;
    height: 100%;
    /*background: #a993c5;*/
    background-image: url(../img/news-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
}
.right-news {
    width: 580px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.home-news-catagories {
    /*width: 416px;*/
    /*margin: 32px auto 0 auto;*/
    width: 580px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.home-news-catagories .news-cat:hover,
.home-news-catagories .news-cat.actived {
    color: #106FFF;
    /* background: #106FFF; */
    border: 1px solid #106FFF;
}

.home-news-catagories .news-cat {
    width: 130px;
    height: 50px;
    font-size: 20px;
    font-family: Source Han Sans SC, Source Han Sans SC;;
    font-weight: 500;
    color: #41474B;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #dedede;
    border-radius: 50px;
}

/* 新闻查看更多 */
.news-more {
    width: 100%;
    text-align: center;
}

.news-more a {
    color: rgba(0, 0, 0, 0.60);
    font-size: 16px;
    font-weight: 400;
}

.news-more a:hover {
    color: #000;
}

/* AI问答 */
.ai-header-tabs {
    display: flex;
    margin-bottom: 16px;
    overflow: hidden;
    margin-top: 60px;
}

.main-tab {
    height: 42px;
    box-sizing: border-box;
    padding: 10px 16px;
    text-align: center;
    background: transparent;
    /* color: #fff; */
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
}

.main-tab:hover {
    color: #106FFF;
}

.main-tab.active {
    height: 42px;
    font-weight: 500;
    box-sizing: border-box;
    color: #FFFFFF;
    background: #106FFF;
    transform: translateY(-1px);
    border-radius: 99px 99px 99px 99px;
}

.tab-content {
    display: none;
    border-radius:12px;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #106FFF;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.input-group input, .input-group textarea {
    width: 100%;
    border:none;
    color: input-group;
    font-size: 14px;
    transition: border-color 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.input-group textarea {
    min-height: 120px;
    resize: vertical;
    /* 隐藏右下角的resize图标 */
    overflow: hidden;
}

/* 针对Webkit浏览器的样式 */
.input-group textarea::-webkit-resizer {
    display: none;
}

/* 针对Firefox的样式 */
.input-group textarea::-moz-resizer {
    display: none;
}

.examples-section {
    border-radius: 12px;
    margin-bottom: 40px;
}

.examples-title {
    font-size: 16px;
    margin-bottom: 16px;
    color: rgba(0,0,0,0.8);
    font-weight: 600;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.example-card {
    background: #F0F3F7;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s;
    cursor: pointer;
}

.example-card:hover {
    background: #106FFF;
}

.example-question {
    color: #000000;
    font-size: 16px;
}

.example-card:hover .example-question {
    color: #fff !important;
}

.feature-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-left {
    display: flex;
    justify-content: space-between;
}

.feature-item {
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 6px 8px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.08);
    margin-right: 4px;
}

.feature-item .icon {
    width: 16px;
    height: 16px;
    margin-right: 2px;
}

.feature-item:hover {
    box-shadow: 0 0 0 1px #106FFF;
    cursor: pointer;
   
}

.feature-text {
    color: rgba(0,0,0,0.8);
    font-size: 14px;
    margin-left: 2px;
    font-weight: 400;
}

.feature-right .main-icon {
    width: 32px;
    height: 32px;
}
