body {
    background: #f3f5f7;
}
.banner1 .title p{
  color: #ffffff;
}
.banner1 .desc p{
  color: #e5e7eb;
}

.model1 {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 70px 0 62px;
    background: #f3f5f7;
}

.model1 .section1 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 78%;
    margin: 0 auto;
}

.model1 .section1 .left {
    display: flex;
    flex-direction: column;
}

.model1 .section1 .tag {
    display: flex;
    align-items: center;
    gap: 16px;
}

.model1 .section1 .tag .line {
width: 48px;
height: 2px;
background: #f97316;
}

.model1 .section1 .tag p {
color: #f97316;
font-family: "Noto Sans SC";
font-weight: 700;
font-size: 14px;
line-height: 20px;
text-transform: uppercase;
}

.model1 .section1 .title {
    display: flex;
    margin-top: 10px;
}

.model1 .section1 .title p {
color: #003771;
font-family: "Noto Sans SC";
font-weight: 700;
font-size: 48px;
line-height: 48px;
}

.model1 .section1 .right {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 16px;
    border: 0.6px solid #f3f4f6;
    box-sizing: border-box;
    background: #ffffff;
    box-shadow: 0px 1px 2px -1px #0000001a, 0px 1px 3px #0000001a;
}

.model1 .section1 .right .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 24px;
    color: #637083;
    background: #ffffff;
    border-radius: 6px;
    cursor: pointer;
    border-radius: 14px;

}

.model1 .section1 .right .item p {
text-align: center;
color: #6a7282;
font-family: "Noto Sans SC";
font-weight: 500;
font-size: 16px;
line-height: 24px;
    white-space: nowrap;
}

.model1 .section1 .right .item-active {
    background: #003771;
    box-shadow: 0px 2px 4px -2px #0000001a, 0px 4px 6px -1px #0000001a;
}
.model1 .section1 .right .item-active p{
text-align: center;
color: #ffffff;
font-family: "Noto Sans SC";
font-weight: 500;
font-size: 16px;
line-height: 24px;
}

.model1 .section2 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 78%;
    margin: 50px auto 0;
    gap: 30px 2.6%;
}

.model1 .section2 .item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    border: 0.6px solid #f3f4f6;
    box-sizing: border-box;
    background: #ffffff;
    box-shadow: 0px 1px 2px -1px #0000001a, 0px 1px 3px #0000001a;
}

.model1 .section2 .item:hover {
    box-shadow: 0 22px 46px rgba(0, 55, 113, 0.14);
}
.model1 .section2 .item:hover .title p{
    color: #f97316;
}
.model1 .section2 .item:nth-child(1) {
    flex: 0 1 48.7%;
}

.model1 .section2 .item:nth-child(2) {
    flex: 0 1 48.7%;
}

.model1 .section2 .item:nth-child(3) {
    flex: 0 1 31.5%;
}

.model1 .section2 .item:nth-child(4) {
    flex: 0 1 31.5%;
}

.model1 .section2 .item:nth-child(5) {
    flex: 0 1 31.5%;
}

.model1 .section2 .item .img {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
    background: #d9e4ef;
}

.model1 .section2 .item .img img {
    display: block;
    width: 100%;
    height: auto;
    transition: 0.5s;
}

.model1 .section2 .item .img:hover img {
    transform: scale(1.05);
}

.model1 .section2 .item .img .tag {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    border-radius: 10px;
    background: #ffffffe6;
}

.model1 .section2 .item .img .tag p {
    color: #003771;
    font-family: "Noto Sans SC";
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}

.model1 .section2 .item .content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 24px 26px 26px;
}


.model1 .section2 .item .date {
    display: flex;
}

.model1 .section2 .item .date p {
    color: #99a1af;
    font-family: "Noto Sans SC";
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.model1 .section2 .item .title {
    display: flex;
    margin-top: 12px;
}

.model1 .section2 .item .title p {
    color: #003771;
    font-family: "Noto Sans SC";
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    transition: color 0.5s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: 0.5s;
}



.model1 .section2 .item .desc {
    display: flex;
    margin-top: 18px;
}

.model1 .section2 .item .desc p {
color: #6a7282;
font-family: "Noto Sans SC";
font-weight: 400;
font-size: 16px;
line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: 0.5s;
}


.model1 .section2 .item .more {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 20px;
    color: #003771;
}

.model1 .section2 .item .more p {
    color: #003771;
    font-family: "Noto Sans SC";
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.model1 .section2 .item .more .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    min-width: 32px;
    max-width: 32px;
    height: 32px;
    border-radius: 18641400px;
    background: #eff6ff;
}
.model1 .section2 .item .more .icon svg{
    width: 16px;
    min-width: 16px;
    max-width: 16px;
    height: 16px;
}

.model1 .page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 30px;
  margin-top: 42px;
}

.model1 .pre-pageBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 58px;
  max-width: 58px;
  min-width: 58px;
  height: 58px;
border-radius: 14px;
border: 0.6px solid #e5e7eb;
box-sizing: border-box;
}

.model1 .next-pageBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 58px;
  max-width: 58px;
  min-width: 58px;
  height: 58px;
  border-radius: 14px;
border-radius: 14px;
border: 0.6px solid #e5e7eb;
box-sizing: border-box;
}

.model1 .page-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.model1 .pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.model1 .num {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 58px;
  max-width: 58px;
  min-width: 58px;
  height: 58px;
    border-radius: 14px;
    border: 0.6px solid #e5e7eb;
    box-sizing: border-box;
    text-align: center;
    color: #4a5565;
    font-family: "Noto Sans SC";
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.model1 .num-active {
    background: #003771;
    box-shadow: 0px 2px 4px -2px #0000001a, 0px 4px 6px -1px #0000001a;
  color: #ffffff;
}

.model1 .ellipsis {
  color: #7f8c9d;
  font-size: 13px;
}

@media (max-width: 1280px) {
    .model1 .section1 {
        width: 86%;
    }

    .model1 .section2 {
        width: 86%;
        gap: 24px 2.5%;
    }

    .model1 .page {
        width: 86%;
    }
}

@media (max-width: 1024px) {
    .model1 {
        padding: 52px 0 48px;
    }

    .model1 .section1 {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .model1 .section1 .title p {
        font-size: 28px;
        line-height: 38px;
    }

    .model1 .section1 .right {
        flex-wrap: wrap;
    }

    .model1 .section2 {
        gap: 22px;
    }

    .model1 .section2 .item:nth-child(1) {
        flex: 0 1 100%;
    }

    .model1 .section2 .item:nth-child(2) {
        flex: 0 1 100%;
    }

    .model1 .section2 .item:nth-child(3) {
        flex: 0 1 100%;
    }

    .model1 .section2 .item:nth-child(4) {
        flex: 0 1 100%;
    }

    .model1 .section2 .item:nth-child(5) {
        flex: 0 1 100%;
    }
}

@media (max-width: 640px) {
    .model1 {
        padding: 34px 0 34px;
    }

    .model1 .section1 {
        width: 90%;
    }

    .model1 .section1 .tag p {
        font-size: 13px;
        line-height: 18px;
    }

    .model1 .section1 .title p {
        font-size: 24px;
        line-height: 32px;
    }

    .model1 .section1 .right {
        width: 100%;
        gap: 6px;
        padding: 6px;
    }

    .model1 .section1 .right .item {
        flex: 1 1 30%;
        padding: 8px 6px;
    }

    .model1 .section1 .right .item p {
        font-size: 13px;
        line-height: 18px;
    }

    .model1 .section2 {
        width: 90%;
        margin-top: 20px;
        gap: 18px;
    }

    .model1 .section2 .item {
        border-radius: 10px;
    }

    .model1 .section2 .item .img .tag {
        top: 10px;
        left: 10px;
        padding: 5px 10px;
    }

    .model1 .section2 .item .content {
        padding: 18px 18px 20px;
    }

    .model1 .section2 .item:nth-child(3) .content {
        padding: 18px 18px 20px;
    }

    .model1 .section2 .item:nth-child(4) .content {
        padding: 18px 18px 20px;
    }

    .model1 .section2 .item:nth-child(5) .content {
        padding: 18px 18px 20px;
    }

    .model1 .section2 .item .date p {
        font-size: 13px;
        line-height: 18px;
    }

    .model1 .section2 .item .title p {
        font-size: 15px;
        line-height: 24px;
    }

    .model1 .section2 .item:nth-child(3) .title p {
        font-size: 15px;
        line-height: 24px;
    }

    .model1 .section2 .item:nth-child(4) .title p {
        font-size: 15px;
        line-height: 24px;
    }

    .model1 .section2 .item:nth-child(5) .title p {
        font-size: 15px;
        line-height: 24px;
    }

    .model1 .section2 .item .desc p {
        font-size: 13px;
        line-height: 21px;
    }

    .model1 .section2 .item:nth-child(3) .desc p {
        font-size: 13px;
        line-height: 21px;
    }

    .model1 .section2 .item:nth-child(4) .desc p {
        font-size: 13px;
        line-height: 21px;
    }

    .model1 .section2 .item:nth-child(5) .desc p {
        font-size: 13px;
        line-height: 21px;
    }

    .model1 .page {
        width: 90%;
        margin-top: 24px;
    }
}

@media (max-width: 414px) {
    .model1 .section1 .title p {
        font-size: 22px;
        line-height: 30px;
    }

    .model1 .section1,
    .model1 .section2,
    .model1 .page {
        width: 94%;
    }
}
