.container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top:50px;
}

.article-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.article-item {
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 170px;
    overflow: hidden; /* 隐藏超出的内容 */
    display: flex;
    flex-direction: column;
}

.article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.article-item h3 {
    color: #333;
    font-size: 22px;
    margin: 0 0 10px;
    flex-shrink: 0; /* 标题不收缩 */
}

.article-item p {
    margin: 0;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis; /* 超出部分显示省略号 */
    display: -webkit-box;
    -webkit-line-clamp: 7; /* 控制行数 */
    -webkit-box-orient: vertical;
    height: 84px;
}
.article-xq{
    display: flex;
    margin-top: 20px;
    color: #999;
}
.article-xq span{
    width: 50%;
    display: block;
}
.dy_lunbao_box{
    width: 100%;
    height: 788px;
    background-image: url(/static/futeng/images/20190527110229_6133.jpg);
    position: relative;
}
.dy_baojia_box{
    display: flex;
    width: 1200px;
    height: 788px;
    margin: 0 auto;
    align-items: center; /* 垂直居中 */
    position: relative;
}
.dy_baojia_hz{
    width: 395px;
    float: left;
    background: #F0F8FF;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}
.dy_baojia_titl_box{
    width: 100%;
    height: 95px;
    border-top-left-radius: 10px; /* 左上角圆角 */
    border-top-right-radius: 10px; /* 右上角圆角 */
    background-color: #241CC9; /* 背景颜色 */
    display: flex;
}
.dy_baojia_titl_box .dy_baojia_title_hz{
    width: 68%;
    display: flex;
    flex-direction: column; /* 垂直排列子元素 */
    justify-content: center; /* 垂直居中 */
    align-items: center; /* 水平居中 */
    height: 100%; /* 根据需要调整高度 */
}
.dy_baojia_titl_box .dy_baojia_title_hz .dy_baojia_title_hz_01{
    color: #fff;
    font-weight: bold;
    font-size: 26px;
    text-align: center;
    width: 100%;
}
.dy_baojia_titl_box .dy_baojia_title_hz .dy_baojia_title_hz_02{
    color: #fff;
    font-size: 14px;
    text-align: center;
    width: 80%;
    background: #000;
    border-radius: 10px;
    margin-top: 5px;
    padding: 5px 0;
}
.dy_baojia_titl_box .dy_lvjia_box{
    width: 32%;
    display: flex;
    flex-direction: column; /* 垂直排列子元素 */
    justify-content: center; /* 垂直居中 */
    height: 100%; /* 根据需要调整高度 */
}
.dy_lvjia_hz{
    width: 97px;
    height: 57px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column; /* 垂直排列子元素 */
    justify-content: center; /* 垂直居中 */
    background: #1656FF;
    color: #fff;
}
.dy_lvjia_hz .dy_lvjia_title{
    font-size: 14px;
    text-align: center;
}
.dy_lvjia_hz .dy_lvjia_jg{
    font-size: 25px;
    text-align: center;
}

.form_box {
    background-color: aliceblue;
    padding: 25px;
    padding-bottom:25px;
    border-radius: 10px;
}
.xx_box .radio-group {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
    box-sizing: border-box;
}

.radio-group label {
    flex: 1 1 calc(33.33% - 3.33px);
    max-width: calc(33.33% - 3.33px);
    background-color: #fff;
    font-size: 14px;
    border: 1px solid #e3e3e3;
    align-items: center;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 5px;
}
.page-section{
    margin-top: 10px;
}
.page-section-title {
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
    vertical-align: bottom;
}
.xx_box #phone_number {
    padding: 10px 5px;
    color: #333;
    border: 1px solid #CCCCCC;
    font-size: 14px;
    box-sizing: border-box;
    width: 100%;
    background-color: #fff;
    outline: none;
    border-radius: 5px;
}
@keyframes scaleUpDown {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.page-section button {
    width: 100%;
    height: 40px;
    line-height: 35px;
    font-size: 16px;
    border-radius: 8px;
    margin-top: 10px;
    background-color: #F37934;
    border: 0;
    color: #fff;
    position: relative;
    animation: scaleUpDown 1s ease-in-out infinite;
}
.page-section button::before {
    content: "获取铝单板出厂价";
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 14px;
    padding: 0 5px;
    background-image: linear-gradient(to bottom, gold, rgb(195, 223, 34));
    height: 20px;
    line-height: 20px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #d80000;
}
.shuoming{
    font-size: 14px;
    color: #666;
}
.dy_lunbo_video_box{
    height: 788px;
    width: 100%;
    position: absolute;
}
.dy_lunbo_video_box video{
    width: 100%;
    height: 788px;
}
.dy_baojia_jisuan{
    border-radius: 10px;
}
.popup{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 999;
}
.popup .popup-button{
    width: 35px;
    height: 35px;
    border-radius: 35px;
    border: 2px solid #fff;
    text-align: center;
    line-height: 33px;
    color: #fff;
    font-size: 28px;
    margin: 0 auto;
    margin-top: 40px;
}
.popup-content{
    padding: 30px;
    color: #fff;
}
.popup-baojia-text{
    margin-top: 20px;
    font-size: 20px;
}
.popup-shuoming{
    font-size: 14px;
    margin-top: 20px;
    color: #999;
}
.swal2-popup{
    width: 320px;
}











.tag_header {
    text-align: left;
    margin-bottom: 20px;
}

.tag_header span {
    font-size: 24px;
    font-weight: bold;
    color: #0044cc;
    display: inline-block;
}
.tag_header h1 {
    display: inline-block;
}
.chanpian_box{
    width: 100%;
    display: flex;
    position: relative;
}

.chanpian_box ul{
    display: grid;
    grid-template-areas:
        "item1 item2 item3"
        "item1 item4 item5";
    grid-template-columns: 410px 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px 10px;
    width: 930px;
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.chanpian_box ul li {
    background-color: lightgrey;
    height: 253px;
    position: relative;
    transition: transform 0.3s ease;
}
.chanpian_box ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.chanpian_box ul li img{
    width: 100%;
    height: 100%;
}
.chanpian_box ul li:first-child {
    width: 410px;
    height: 410px;
    background-color: grey;
    grid-area: item1;
}
.chanpian_box ul li:nth-child(2) {
    grid-area: item2;
}
.chanpian_box ul li:nth-child(3) {
    grid-area: item3;
}
.chanpian_box ul li:nth-child(4) {
    grid-area: item4;
}
.chanpian_box ul li:nth-child(5) {
    grid-area: item5;
}
.chanpian_box ul li h3{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
}
.chanpian_box .extra-div {
    display: block;
    width: 410px;
    height: 97px;
    position: absolute;
    top: 420px;
    left: 0;
    background: url(../images/tag-vr.jpg) no-repeat center;
    transition: transform 0.3s ease;
}

.chanpian_box .extra-div:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.chanpian_box .pleft{
    margin-left: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.sbjbox ul{
    display: flex;
    gap: 20px;
}
.sbjbox li {
    width: 33% !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
}
.sbjbox .tu {
    width: 100% !important;
}
.sbjbox li .lazy{
    width: 100%;
}
