html,body{
    width: 100%;
    height: 100%;
    font-size: 16px;
}
.content{
    max-width: 1050px;
    margin: 0 auto;
}
.header{
    font-size: 1.125rem;
    color: #666;
}
.title{
    height: 106px;
    line-height: 106px;
    font-size: 1.125rem;
    color: #666;
}
.logo{
    width: 160px;
    height: 202px;
}
h3{
    line-height: 60px;
    margin-bottom: 10px;
    margin-top: 0;
    font-size: 1.875rem;
    font-weight: 700;
}
.rows{
    width: 50%;
    height: auto;
    overflow: hidden;
}
.col-5{
    float: left;
    width: 47%;
    height: 50px;
    line-height: 50px;
    background: #e9e9e9;
    font-size: 1.25rem;
    text-align: center;
}
.col-5 a{
    display: inline-block;
    width: 100%;
    height: 50px;
    color: #333;
}
.col-5 a:hover,
.col-5 a:active{
    background: #e02519;
    color: #fff;
    text-decoration: none;
}
.mg-top{
    margin-top: 15px;
}
.col-5:nth-child(even){
    margin-left: 15px;
}
.card-ft{
    width: 100%;
    height: auto;
    overflow: hidden;
}
.sub-title{
    position: relative;
    height: 100px;
    line-height: 100px;
    padding-left: 15px;
    border-bottom: 1px solid #cccccc;
    font-size: 1.875rem;
    font-weight: 700;
}
.sub-title::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 40px;
    margin-top: -20px;
    background: #e02519;
}
.remark{
    width: 100%;
    padding: 10px 0;
    line-height: 30px;
    font-size: 1.125rem;
}
.card-list{
    padding: 10px 0;
}
.card{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 10px 0;
}
.card-hd{
    width: 130px;
    height: 160px;
}
.card-hd img{
    width: 100%;
    height: 100%;
}
.card-bd{
    flex: 1;
    padding-left: 10px;
}
.card-bd-name{
    margin-bottom: 0;
    font-size: 1.5rem;
}
/* 电话弹窗样式 */
.phone-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: none;
}

.phone-modal-content {
    width: 400px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.phone-modal-header {
    position: relative;
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
    background-color: #f5f5f5;
}

.phone-modal-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    border: none;
    background: none;
}

.close-btn:hover {
    color: #e02519;
}

.phone-modal-body {
    padding: 30px;
    text-align: center;
}

.phone-modal-body p {
    margin: 0;
    font-size: 1.25rem;
    color: #333;
    line-height: 1.5;
}

.phone-modal-body span {
    font-weight: 700;
    color: #e02519;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

@media screen and (max-width: 768px) {
    h3{
        padding-top: 10px;
        line-height: 30px;
        font-size: 1.25rem;
    }
    .col-xs-9{
        padding-left:0;
    }
    .rows{
        width: 100%;
    }
    .col-5{
        height: 40px;
        line-height: 40px;
        font-size: 1.0rem;
    }
    .card-hd{
        width: 100px;
        height: 130px;
    }
    .card-bd{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp:3;
        -webkit-box-orient: vertical;
    }
    .card-bd-name{
        font-size: 1.125rem;
    }
    .remark{
        padding:10px 0;
        margin-bottom: 0;
        font-size: 1rem;
    }
    .phone-modal-content {
        width: 90%;
        max-width: 300px;
    }
    .phone-modal-header {
        padding: 15px;
    }
    .phone-modal-header h4 {
        font-size: 1.125rem;
    }
    .phone-modal-body {
        padding: 20px;
    }
    .phone-modal-body p {
        font-size: 1.125rem;
    }
}