@charset "utf-8";

.college {
    margin: 40px auto;
}

.college h1 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    padding: 1.5rem 0;
}

.college .box {
    padding: 0 40px;
}

.college .tbody {
    min-height: 240px;
    border: 1px solid #e5e7eb;
}

.college .tbody .tab {
    display: flex;
    align-items: center;
}

.college .tbody .tab li {
    flex: 1;
    text-align: center;
    height: 45px;
    line-height: 45px;
    color: #333;
    display: block;
    cursor: pointer;
    background: #FFF0E8;
}

.college .tbody .tab li.cur {
    color: #fff;
    background-color: #f68b1e !important;
}

.college .tbody .info {
    display: flex;
}

.college .tbody .info ul {
    flex: 1;
    padding: 50px 20px;
}

.college .tbody .info ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.college .tbody .info ul li .b {
    max-width: 145px;
    width: 100%;
    text-align: right;
    color: #333;
    font-size: 16px;
    margin-right: 20px;
}

.college .tbody .info ul li .select {
    max-width: 320px;
    width: 100%;
}

.college .tbody .info ul .top {
    position: relative;
    display: inline-block;
}

.college .tbody .info ul .top::after {
    content: '';
    width: 100%;
    height: 3px;
    background: #f68b1e;
    position: absolute;
    left: 0;
    bottom: -3px;
    border-radius: 3px;
}

.college .tbody .info ul .money {
    margin-top: 20px;
    box-shadow: 0 0 #0000;
    background: #FFF0E8;
    border-radius: 5px;
    padding: 10px 20px;
}

.college .tbody .info ul .money .val {
    font-weight: bold;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
}

.college .tbody .info ul .detail {
    margin-top: 20px;
}

.college .tbody .info ul .detail .d {
    margin-top: 20px;
    display: flex;
    align-items: center;
}
.college .tbody .info ul .detail .d .tit{
    display: flex;
    align-items: center;
}
.college .tbody .info ul .detail .d .tit .before{
   cursor: pointer;
   position: absolute;
   color: #000;
   width: 20px;
   height: 20px;
   border-radius: 10px;
   background-color: #d2d3d6;
   text-align: center;
   line-height: 20px;
   left: 25%;
   font-weight: bold;
}

.college .tbody .info ul .detail .d div {
    flex: 1;
    font-size: 15px;
    position: relative;
}

.college .tbody .msg {
    font-weight: bold;
    font-size: 20px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .college .tbody .info{
       display: contents;
    }
    .college .tbody .info ul:last-child{
        padding-top: 0 !important;
    }
}
@media (max-width: 750px) {
    .college .box{
        padding: 0;
    }
    .college .tbody .info ul{
        padding: 20px 10px;
    }
    .college .tbody .info ul .detail .d .tit .before{
        left: 40%;
    }
}