
body {
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* 面包屑导航 */
.breadcrumb {
    padding: 15px 0;
    color: #1c1c1c;
    padding-left: 22px;
    font-size: 14px;
    background-image: url(http://101.35.18.18:8777/shangao_pc_static/assets/images/page_curr.png);
    background-position: left center;
    background-repeat: no-repeat;
}

.location-icon {
    color: #666;
    margin-right: 5px;
}

.breadcrumb a:link, .card-right-left h2 a:link,
.breadcrumb a:visited, .card-right-left h2 a:visited,
a:hover, a:active {
    text-decoration: none;
    color: inherit;
}

/* 筛选区域 */
.filter-section {
    font-size: 14px;
    margin-bottom: 20px;
}

.filter-row {
    display: flex;
    margin-bottom: 15px;
}

.filter-row:last-child {
    margin-bottom: 0;
}

.filter-label {
    line-height: 30px;
    color: #333;
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
}

.filter-options {
    display: inline-block;
    width: calc(100% - 130px);
}

.option {
    display: inline-block;
    padding: 2px 10px;
    margin: 3px 5px 3px 0;
    color: #4A4949;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.2s;
}

.option:hover {
    color: #24211f;
}

.option.active {
    background-color: #24211f;
    color: #fff;
}

/* 项目卡片 */
.project-card {
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header {
    position: absolute;
    background-color: #e60012;
    color: #fff;
    padding: 8px 15px;
    font-weight: bold;
    font-size: 16px;
    width: 100px;
    text-align: center;
}

.card-content {
    display: flex;
    border-bottom:1px solid #C1C1C1;
    border-top:1px solid #C1C1C1;
    border-right:1px solid #C1C1C1;
}

.card-left {
    width: 30%;
    padding-right: 20px;
}

.card-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 400px;
    max-height: 240px;
}

.card-right {
    width: 70%;
    padding: 20px;
    display: flex;
}

.card-right-left {
    flex: 1;
}

.card-right h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.price {
    margin-bottom: 20px;
}

.price-icon {
    color: #666;
    margin-right: 5px;
    border: 2px solid #666;
    font-size: 12px;
    border-radius: 100%;
    font-weight: bold;
    display: inline-flex;
    width: 16px;
    justify-content: center;
    height: 16px;
    align-items: center;
}

.price-label {
    color: #666;
}

.price-value {
    color: #e60012;
    font-weight: bold;
    font-size: 18px;
}

/* 卡片详情 */
.card-details {
    display: flex;
    margin-bottom: 20px;
    padding: 15px 0;
}
.detail-item::after {
    content: "";
    height: 40px;
    width: 1px;
    background: #C1C1C1;
    display: block;
    position: absolute;
    right: 0;
    top: 6px
}
.detail-item:last-child::after{
    display: none;
}
.detail-item {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    position: relative;
}

.detail-item:last-child {
    border-right: none;
}

.detail-title {
    font-weight: bold;
    color: #e60012;
    margin-bottom: 5px;
}

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

/* 卡片底部 */
.card-footer {
    display: flex;
}

.buttons {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 8px 15px;
    margin-left: 10px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    text-align: center;
    width: 130px;
    border: 1px solid #ccc;
    color: #666;
}

.btn:hover {
    opacity: 0.9;
    background-color: #333;
    color: #fff;
}

/* 分页导航 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-item {
    display: inline-block;
    padding: 5px 12px;
    margin: 0 5px;
    border: 1px solid #ddd;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
    background-color: #24211f;
}

.page-item:hover {
    background-color: #f5f5f5;
    color: #24211f;
}

.page-item.active {
    background-color: #fff;
    color: #24211f;
    border-color: #fff;
}

.page-item.next,
.page-item.last {
    padding: 5px 15px;
}

/* 弹窗表单 */
.form-mask {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
    z-index: 1000000;
    display: none;
}

.form-mask .form-box {
    width: 500px;
    height: 580px;
    background: #FFFFFF;
    border-radius: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-mask .form-box .cap-tip {
    font-size: 24px;
    font-family: PingFang SC;
    font-weight: 800;
    color: #333333;
    margin-bottom: 14px;
    padding-top: 80px;
    text-align: center;
}

.form-mask .form-box .close-btn {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.form-mask .form-box .indexDialog-from-body {
    width: fit-content;
    margin: 0 auto;
}

.form-mask .form-box .indexDialog-from-body .indexDialog-from-item {
    width: 400px;
    height: 44px;
    border: 1px solid #DCDCDC;
    border-radius: 4px;
    margin-bottom: 32px;
    box-sizing: border-box;
    padding: 0 16px;
}

.form-mask .form-box .indexDialog-from-body .indexDialog-from-item .label {
    color: #DCDCDC;
    font-size: 16px;
}

.form-mask .form-box .indexDialog-from-body .indexDialog-from-item input {
    border: none;
    flex: 1 0 0;
}

.form-mask .form-box .indexDialog-from-body .indexDialog-from-item select {
    border: none;
    outline: none;
    flex: 1 0 0;
}

.form-mask .form-box .indexDialog-from-body .btn-box {
    width: 400px;
    height: 44px;
    background: #C6A868;
    border-radius: 4px;
    text-align: center;
    line-height: 44px;
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 16px;
    cursor: pointer;
}