/* 首页轮播图样式 */
.banner-carousel {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.carousel-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-slides {
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    /*padding: 40px;*/
    text-align: center;
    color: #fff;
}

.slide-content h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 18px;
    opacity: 0.9;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicators .indicator.active {
    background: #fff;
    transform: scale(1.2);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-arrow:hover {
    background: rgba(255,255,255,0.3);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

/* 轮播插件控制按钮 */
.paging-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    text-decoration: none;
}

.paging-control:hover {
    background: rgba(255,255,255,0.3);
    color: #fff;
}

.paging-control.prev {
    left: 20px;
}

.paging-control.next {
    right: 20px;
}

/* .home .main-content 样式已移除，避免与sticky定位冲突 */
.form-container{
    width:1200px;
    position: absolute;
    height: 100%;
    left:50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.form-container .customer-select{
    font-size:16px;
    color:#222;
    /*padding:6px 0px;*/
    margin-right: 16px;
}

/*.form-container .customer-select.lock:after{*/
/*    content: "\e69e";*/
/*    font-family: iconfont;*/
/*    color:rgba(43, 36, 28, 0.37);*/
/*    font-size:18px;*/
/*    font-weight: 600;*/
/*}*/

/*.form-container .customer-select::after{*/
/*    content: "\eb06";*/
/*    font-family: iconfont;*/
/*    color:rgba(43, 36, 28, 0.37);*/
/*    font-size:14px;*/
/*    font-weight: 600;*/
/*}*/

.form-container .form-header{
    display: flex;
    font-size:26px;
    font-weight: 600;
    color:#241F1B;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}

.form-container .form-header .status{
    font-size:14px;
    color:#919191;
    font-weight: 100;
    display: flex;
    align-items: center;
}
.form-container .form-header .open-gao{
    font-size:14px;
    color: rgba(255, 112, 22, 1);
    font-weight: 100;
    display: flex;
    align-items: center;
}

.form-container .form-header .status .status-icon{
    width:12px;
    margin-right: 8px;
}

.form-container .form-header .status .status-icon img{
    width: 100%;
}

.form-container .form-content{
    width:400px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    padding: 16px;
}

.form-container .form-item{
    display: flex;
    align-items: center;
    /*margin:16px 0px;*/
    margin-top: 8px;
}

.form-container .form-item.horizontal{
    gap: 8px;
}

.form-container .form-item.horizontal>div{
    width:calc(50% - 8px);
    display: flex;
    align-items: center;
    flex-shrink: 1;
}

.form-container .input-box{
    
    border:solid 1px rgba(168, 168, 168, 0.39);
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding: 0px 6px;
    border-radius: 8px;
}

.form-container .input-box .input{
    flex-grow: 1;
}

.form-container .input-box .input input{
    width:100%;
    padding: 6px;
    color:#FF7016;
    font-size:14px;
    font-weight: 600;
}



.form-container .choose-list{
    display: flex;
    flex-wrap: wrap;
    gap:8px;
    /*display: grid;*/
    /*grid-template-columns: repeat(3, 1fr);*/
}

.form-container .label-name{
    width: fit-content;
    flex-shrink: 0;
    white-space: nowrap;
    margin-right: 10px;
    font-size:14px;
    color:#666;
}

.form-container .choose-list .choose-item{
    border:solid 1px rgba(168, 168, 168, 0.39);
    color:#222;
    padding: 6px 12px;
    border-radius: 8px;
    font-size:14px;
    cursor: pointer;
}

.form-container .choose-list .choose-item.active{
    border:solid 1px rgba(255, 112, 22, 1);
    color:rgba(255, 112, 22, 1);
    font-weight: 600;
}

.form-container .choose-list .choose-item.disabled{
    background: #f5f5f5;
    color:#666;
}

.form-container .btn-group{
    width:100%;
    position: relative;
    margin-top: 8px;
}

.form-container .btn-group .btn-box{
    position: absolute;
    top:-2px;
    left:0px;
    width:100%;
    height: 100%;
    display: flex;

}

.form-container .btn-group .btn-save{
    width:100%;
    height: 50px;
    line-height: 50px;
    font-weight: 700;
    font-size:18px;
    letter-spacing: 1px;
    background: rgba(255, 240, 230, 1);
    border-radius: 50px;
    overflow: hidden;
    color:rgba(255, 116, 26, 1);
    text-align: center;
}

.form-container .btn-group .btn-save.is_allow{
    background: linear-gradient(90deg, #FFA164 0%, #FF7417 74.97%);
    color:#ffffff;
}

.form-container .btn-group img{
    width:100%;
}

.form-container .btn-group .btn-box>div{
    /* width:50%; */
    flex:1;
    height: 100%;
    display: flex;
    flex:1;
    text-align: center;
    align-items: center;
    justify-content: center;
    color:#fff;
    font-size:18px;
    font-weight: 600;
    
}

.form-container .btn-intelligence{
    left:0px;
}

.form-container .btn-expert{
    left:50%;
}

.form-container .statistics{
    display: flex;
    justify-content: space-around;
    font-size:12px;
    margin-top:16px;
}

.form-container .statistics span{
    color:#FF7016;
}

.float-sidebar-wrapper{
    position: relative;
}

.float-sidebar{
    position: sticky;
    top: 20px; /* 距离顶部20px时开始粘性定位 */
    left:6%;
    width: 200px;
    z-index: 99;
    float: left; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.float-sidebar .float-sidebar-links{
    width:102px;
    background-color: #fff;
    box-shadow: 0px 0px 16px  rgba(30, 31, 36, 0.07);
    align-items: center;
    border-radius: 25px;
    padding: 0px 10px;
}

.float-sidebar .float-sidebar-links .link{
    display: flex;
    flex-direction: column;
    border-bottom: solid 1px #EBEBEB;
    position: relative;
    padding: 0px 0px 20px 0px;
}

.float-sidebar .float-sidebar-links .link:last-child{
    border-bottom: none;
}

.float-sidebar .float-sidebar-links .link span{
    font-size:14px;
    width:100%;
    text-align: center;
    color:#222;
    text-align: center;
    line-height: 1;
    position: absolute;
    bottom:10px;
    /* bottom:-10px; */
    z-index:10;
}

.float-sidebar .planner{
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.float-sidebar .planner span{
    width:fit-content;
    white-space: nowrap;
    position: absolute;
    text-align: center;
    z-index:10;
    bottom:0px;
    left:50%;
    transform: translateX(-50%);
    color:#FFFFFF;
    font-size:13px;
    font-weight: 600;
    border:solid 2px #6D96F7;
    background: #272B36;
    border-radius: 19px;
    padding: 10px 20px;
}

/* .form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header h2 {
    font-size: 24px;
    color: #333;
    margin: 0;
}

.form-header .status {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.form-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.subjects {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.subject-btn {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.subject-btn.active {
    background-color: #ff9900;
    color: white;
    border-color: #ff9900;
}

.subject-btn:hover:not(.active) {
    background-color: #f0f0f0;
}

.subjects-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.subjects-row label {
    min-width: 70px;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.total-score {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.score-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    padding: 12px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.score-value {
    font-size: 18px;
    font-weight: bold;
    color: #ff9900;
    margin-right: 8px;
}

.score-unit {
    font-size: 14px;
    color: #666;
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.action-button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.action-button.primary {
    background-color: #ff9900;
    color: white;
}

.action-button.secondary {
    background-color: #007bff;
    color: white;
}

.action-button:hover {
    opacity: 0.9;
}

.stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}

.stats span {
    margin-right: 12px;
} */



.section-title{
    display: flex;
    margin:20px 0px;
}

.section-title .txt{
    display: flex;
    font-size:36px;
    color:#222;
    font-weight: 600;
    display: flex;
    align-items: flex-end;
    position: relative;
    height: 100%;
    text-indent: 21px;
    line-height: 1;
    flex-grow: 1;
}

.section-title .txt:before{
    content:"";
    width:6px;
    height:80%;
    display: block;
    background-color: #FF7016;
    border-radius: 4px;
    position: absolute;
    left:0px;
    top:52%;
    transform: translateY(-50%);
}

.section-title .txt span{
    color:#FF7016;
    font-size:20px;
    line-height: 1;
}

.section-title .more{
    display: flex;
    justify-content: flex-end;
    border:solid 1px #D9D9D9;
    border-radius: 16px;
    font-size:18px;
    color:#707070;
    line-height: 1;
    display: flex;
    align-items: center;
    padding: 0px 10px;
}

/* 高考资讯 */
.gk-info{
    display: flex;
    align-items: stretch; /* 让左右两列等高 */
    min-height: 400px; /* 设置最小高度确保有足够空间 */
}

.gk-info .top3{
    margin-right: 8px;
    flex: 1; /* 让左侧占据一半空间 */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* 让左侧内容在垂直方向上均匀分布 */
}

.gk-info .lists{
    width:50%;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.gk-info .lists .item{
    padding: 16px 0px;
    border-bottom: dashed 1px rgba(0, 0, 0, 0.14);
    background-color: #fff;
}

.gk-info .lists.normal{
    flex: 1; /* 让右侧占据一半空间 */
    display: flex;
    flex-direction: column;
    padding: 16px;
    margin-left:8px;
    background-color: #fff;
    justify-content: space-between; /* 让右侧内容在垂直方向上均匀分布 */
}

.gk-info .lists.normal .item{
    flex: 1; /* 让每个item平均分配空间 */
    display: flex;
    flex-direction: column;
    justify-content: center; /* 内容在item内垂直居中 */
    padding: 12px 0px;
    border-bottom: dashed 1px rgba(0, 0, 0, 0.14);
}

.gk-info .lists.normal .item:last-child{
    border-bottom: none;
}




.gk-info .lists.top3{
    background-color: transparent;
}

.gk-info .lists.top3 .item{
    display: flex;
    flex-direction: row;
    padding: 8px;
    border-radius: 16px;
    margin-bottom: 16px;
    border-bottom: none;
}

.gk-info .lists.top3 .item:last-child{
    margin-bottom: 0px;
}

.gk-info .cover{
    flex-shrink: 0;
    margin-right: 16px;
}

.gk-info .info-name{
    font-size:20px;
    color:#222222;
    font-weight: 600;
    line-height: 1;
}

.gk-info .release-time{
    color:#B8B8B8;
    line-height: 1;
    margin:16px 0px 22px 0px;
}

.gk-info .info-description{
    color:#7D7D7D;
}








































/* 热门专业区域样式 */
.popular-majors {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    border-radius: 12px;
    align-items: stretch;
}

.majors-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.majors-column.featured{
    background: none;
}

.majors-column.featured .major-card{
    margin-bottom: 16px;
    background: #fff;
    border-radius: 16px;
}

.majors-column.featured .major-card:last-child{
    margin-bottom: 0px;
}

/* 特色卡片样式 */
.major-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    min-height: 120px;
    height: 100%;
    overflow: hidden;
}

.card-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.major-card:nth-child(1) .card-number {
    color:#E33C64;
}

.major-card:nth-child(2) .card-number {
    color:#2A82E4;
}

.major-card:nth-child(3) .card-number {
    color:#AC33C1;
}

.card-content {
    flex: 1;
    min-width: 0;
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content > div:last-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.major-name {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.3;
}

.major-heat {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.heat-label {
    color: #ff6b35;
    font-weight: 500;
}

.view-btn {
    background: #f1f2f6;
    border: none;
    border-radius: 8px;
    padding: 6px 16px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn:hover {
    background: #ff6b35;
    color: #fff;
}



.card-illustration {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
}

.card-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.illustration {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 8px;
}

/* 计算机专业插画 */
.illustration.computer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.illustration.computer .person {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    top: 10px;
    left: 10px;
}

.illustration.computer .laptop {
    position: absolute;
    width: 25px;
    height: 15px;
    background: #fff;
    border-radius: 2px;
    top: 25px;
    left: 15px;
}

.illustration.computer .chart {
    position: absolute;
    width: 15px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    top: 35px;
    right: 10px;
}

/* 电气工程插画 */
.illustration.electrical {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.illustration.electrical .person {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    top: 8px;
    left: 8px;
}

.illustration.electrical .equipment {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    top: 25px;
    left: 10px;
}

.illustration.electrical .tablet {
    position: absolute;
    width: 18px;
    height: 12px;
    background: #fff;
    border-radius: 2px;
    top: 30px;
    right: 8px;
}

/* 数学专业插画 */
.illustration.math {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.illustration.math .person {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    top: 8px;
    left: 8px;
}

.illustration.math .book {
    position: absolute;
    width: 20px;
    height: 15px;
    background: #fff;
    border-radius: 2px;
    top: 25px;
    left: 10px;
}

.illustration.math .whiteboard {
    position: absolute;
    width: 15px;
    height: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    top: 30px;
    right: 8px;
}

/* 普通列表项样式 */
.major-item {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-height: 60px;
    border-bottom:dashed 1px rgba(0, 0, 0, 0.09);
}

.majors-column{
    background: linear-gradient(180deg, rgba(255, 141, 26, 0.06) 0%, rgba(255, 255, 255, 1) 10%);
    border-radius: 18px;
}

.majors-column .major-item:last-child{
    border-bottom: none;
}

.item-number {
    display: flex;
    justify-content: center;
    align-self: flex-start;
    position: relative;
    top:5px;
    font-size: 20px;
    color: rgba(34, 34, 34, 0.5);
    font-weight: 600;
    flex-shrink: 0;
}

.item-content {
    flex: 1;
}

.major-item .major-name {
    font-size: 20px;
    font-weight: 500;
    color: #222;
    margin-bottom: 4px;
    line-height: 1.3;
}

.major-item .major-heat {
    font-size: 14px;
    color: #FF7016;
    margin-bottom: 0;
}

.major-item .view-btn {
    flex-shrink: 0;
    padding: 4px 12px;
    font-size: 12px;
    background-color: transparent;
    color:#7D7D7D;
    border:solid 1px #CCCCCC;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .popular-majors {
        flex-direction: column;
        gap: 15px;
    }
    
    .majors-column.featured {
        flex: 1;
    }
    
    .major-card {
        min-height: 100px;
    }
    
    .majors-column {
        padding: 10px 0;
    }
    
    .card-illustration {
        width: 50px;
        height: 50px;
    }
    
    .card-illustration img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
    
    
}

/* 大学排名卡片区域样式 */
.university-rankings {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    background: #f8f9fa;
    border-radius: 12px;
}

.ranking-card {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    padding: 16px;
}

.ranking-card .card-header {
    display: flex;
    align-items: center;
    padding:0px 0px 16px 0px;
    border-bottom: 1px dashed rgba(20, 38, 37, 0.16);
    margin-bottom: 0px;
    position: relative;
}


.header-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #fff;
    font-size: 16px;
}

.header-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.header-arrow {
    color: #999;
    font-size: 14px;
}

/* 排名列表 */
.ranking-list {
    padding: 0;
}

.ranking-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
}

.rank-number {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-right: 16px;
    min-width: 24px;
}

.university-logo {
    margin-right: 16px;
    flex-shrink: 0;
}

.logo-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

.logo-circle.purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.logo-circle.blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.logo-circle.orange {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.logo-text {
    font-size: 8px;
    font-weight: bold;
    margin-bottom: 2px;
}

.logo-year {
    font-size: 7px;
    opacity: 0.9;
}

.university-info {
    flex: 1;
}

.university-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.3;
}

.university-tags {
    font-size: 12px;
    color: #ff6b35;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .university-rankings {
        flex-direction: column;
        gap: 15px;
    }
    
    .ranking-card {
        flex: 1;
    }
    
    .ranking-item {
        padding: 12px 16px;
    }
    
    .logo-circle {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 7px;
    }
    
    .logo-year {
        font-size: 6px;
    }
}

/* 轮播图包装器样式 */
.banner-wrapper {
    position: relative;
    margin-bottom: 20px;
}

/* 轮播图满屏显示 */
.banner-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.banner-carousel .form{
    position: absolute;
    width:100%;
    max-width: 1200px;
    height: 100%;
    z-index: 9;
    top:0;
    left:50%;
    transform: translateX(-50%);
}

/* 表单容器样式 - 1200px宽度居中 */
/* .form-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 10;
}

.form-wrapper .form-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: flex-end;
    padding: 0 20px;
    pointer-events: auto;
}

.form-wrapper .form-container > div {
    width: 400px;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
} */



.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

.carousel-slide img {
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
}

/* 色块轮播样式 */
/*.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 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.slide-content h2 {
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* removed temporary .slide-actions styles */

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #fff;
    transform: scale(1.2);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

/* 主内容区域样式 */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

/* 轮播图覆盖表单样式 */
.banner-form-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}



.stats-item {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.stats-item:last-child {
    margin-bottom: 0;
}

/* 轮播图响应式设计 */
@media (max-width: 768px) {
    .banner-carousel {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .form-wrapper {
        position: relative;
        height: auto;
    margin-top: 20px;
    }
    
    .form-wrapper .form-container {
        justify-content: center;
        padding: 0 15px;
    }
    
    .form-wrapper .form-container > div {
        width: 100%;
        max-width: 500px;
    }
    
    .main-content {
        padding: 0 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .button-group {
        justify-content: center;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
}

/* 金刚区样式 */
.diamond-zone {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    gap: 10px;
}

.diamond-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-width: 0;
    color:#222 !important;
    font-size:14px;
}


.diamond-icon {
    width: 97px;
    height: 97px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.diamond-icon img{
    width:100%;
    height: 100%;
}

/* 金刚区响应式设计 */
@media (max-width: 768px) {
    .diamond-zone {
        padding: 15px;
        gap: 8px;
    }
    
    .diamond-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }
    
    .diamond-icon i {
        font-size: 16px;
    }
    
    .diamond-text {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .diamond-zone {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .diamond-item {
        flex: 0 0 calc(33.333% - 10px);
        min-width: 0;
    }
    
    .diamond-icon {
        width: 35px;
        height: 35px;
    }
    
    .diamond-icon i {
        font-size: 14px;
    }
    
    .diamond-text {
        font-size: 9px;
    }
}

/* 热门高校区域样式 */
.popular-universities {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
    background: #f8f9fa;
    border-radius: 12px;
}

.universities-section {
    display: flex;
    flex-direction: row;
    flex: 1;
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}

.section-header {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
}

.section-title-text {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    position: relative;
    z-index: 2;
}

.universities-section.local{
    position: relative;
}

.universities-section.local::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(227, 60, 100, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.universities-section.local .background-graphic {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 200px;
    height: 200px;
    z-index: 2;
    opacity: 1;
}

.universities-section.local .background-graphic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left bottom;
}

.universities-section.local .section-title-text {
    color: #7D2237;
    width:180px;
    height:90px;
    text-align: center;
    line-height: 1.5;
}

/* 全国高校区域样式 */
.universities-section.national{
    position: relative;
}

.universities-section.national::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0.32%,rgba(42, 130, 228, 0.16) 100%);
    z-index: 1;
}

.universities-section.national .background-graphic {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 200px;
    height: 200px;
    z-index: 2;
    opacity: 1;
}

.universities-section.national .background-graphic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
}

.universities-section.national .section-title-text {
    color: #1976D2;
    width: 180px;
    height: 90px;
    text-align: center;
    line-height: 1.5;
    margin-left: auto;
}



.universities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    position: relative;
    z-index: 3;
}

.university-card {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.university-logo {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.university-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.university-info {
    flex: 1;
    min-width: 0;
}

.card-header {
    display: flex;
    margin-bottom: 12px;
    position: relative;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 8px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

.logo-circle.red {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
}

.logo-circle.purple {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
}

.logo-circle.blue {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

.logo-text {
    font-size: 6px;
    font-weight: bold;
    margin-bottom: 1px;
}

.logo-year {
    font-size: 5px;
    opacity: 0.9;
}

.university-name {
    flex: 1;
    font-size:20px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
}

.card-arrow {
    color: #999;
    font-size: 12px;
    margin-left: 8px;
}

.university-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 2px 8px;
    background: #fff;
    border: 1px solid #ff6b35;
    border-radius: 12px;
    font-size: 10px;
    color: #ff6b35;
    font-weight: 500;
}

.university-description {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .popular-universities {
        flex-direction: column;
        gap: 15px;
    }
    
    .universities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .university-card {
        padding: 12px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .university-logo {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }
    
    .university-info {
        width: 100%;
    }
    
    .card-header {
        justify-content: center;
    }
    
    .university-name {
        font-size: 13px;
    }
    
    .tag {
        font-size: 9px;
        padding: 1px 6px;
    }
    
    .university-description {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .universities-grid {
        grid-template-columns: 1fr;
    }
}

.universities-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.header-title {
    display: flex;
    align-items: center;
}

.title-icon {
    color: #ff9900;
    font-size: 20px;
    margin-right: 8px;
}

.title-text {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-right: 8px;
}

.subtitle {
    font-size: 14px;
    color: #999;
}

.view-all {
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.view-all:hover {
    color: #ff9900;
}

.universities-content {
    display: flex;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.universities-left {
    width: 200px;
    padding-right: 20px;
}

.local-universities {
    background-color: white;
    border-radius: 8px;
    padding: 16px;
}
.ac_province{
    border: solid 1px rgba(168, 168, 168, 0.39);
    padding: 6px 12px;
    border-radius: 8px;
}
.ac_year{
    border: solid 1px rgba(168, 168, 168, 0.39);
    padding: 6px 12px;
    border-radius: 8px;
}

