#header {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.11);
}
main {
    width: 100%;
    /* overflow-x: hidden; */
}

.header-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    padding: .2rem .3rem;
}

.logo {
    width: 1.2rem;
}

.search {
    height: .48rem;
    margin-left: .32rem;
    border: 1px solid #E5E7EB;
    border-radius: .3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box;
    padding: .1rem;
}
.detail-search-btn:hover {
    transform: scale(1.1);
}

.search-btn {
    width: .32rem;
    height: .32rem;
    cursor: pointer;
    transition: all .3s;
}

.search-btn:hover {
    transform: scale(1.1);
}

.search-keywords {
    width: 3rem;
    height: .32rem;
    padding: 0px .1rem;
    font-size: .16rem;
}

.user {
    height: .4rem;
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 500;
    font-size: .14rem;
    color: black;
    border-radius: .22rem;
    padding: .1rem;
    box-sizing: border-box;
    border: 1px solid #E5E7EB;
    cursor: pointer;
    transition: all .3s;
    opacity: 0;
}

.user:hover {
    border: 1px solid #58A474;
    box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
    color: #58A474;
}

.user-logo {
    width: .28rem;
    height: .28rem;
    border-radius: 50%;
}

.user>span {
    margin-left: .1rem;
    margin-right: .1rem;
}

.header-filter {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    box-sizing: border-box;
    padding: .2rem .3rem;
}
.viewer-backdrop {
    background-color: #000!important;
}
.address,
.filter,
.territory,
.concept,
.financial {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #E5E7EB;
    border-radius: .22rem;
    font-size: .14rem;
    color: #374151;
    font-weight: 400;
    padding: .1rem .16rem;
    cursor: pointer;
    margin-right: .12rem;
    position: relative;
    margin-bottom: .12rem;
}

.address>span,
.filter>span,
.territory>span,
.concept>span,
.financial>span {
    margin: 0rem .08rem;
}

.address-img,
.filter-img {
    width: .15rem;
    height: .15rem;
}

.address-more {
    width: .1rem;
    height: .1rem;
}

.tags {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    box-sizing: border-box;
    padding: 0px .3rem;
}

.tag-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #E5E7EB;
    border-radius: .22rem;
    font-size: .14rem;
    color: #374151;
    font-weight: 400;
    padding: .1rem .16rem;
    margin-right: .1rem;
    transition: all .3s;
    cursor: pointer;
}

.tag-item:hover {
    border: 1px solid #58A474;
    box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
    /* color: #58A474; */
    background-color: #58A474;
    color: #fff;
}

.tag-item-active {
    border: 1px solid #58A474;
    box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
    /* color: #58A474; */
    background-color: #58A474;
    color: #fff;
}

.tag-item>span {
    margin: 0rem .08rem;
}
.hideimg {
    opacity: 0;
    height: 0;
    width: 0;
}
.container {
    box-sizing: border-box;
    padding: .3rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    /* 父元素设置 min-h 时， 解决子元素高度异常 和 子元素间隔异常 */
    align-items: flex-start;
    align-content: flex-start;
    overflow: hidden;
}

.project-item {
    width: calc((100% - 3 * .28rem) / 4);
    margin-right: .28rem;
    margin-bottom: .4rem;
}
.project-item .pi-image > img{
    height: calc(((100vw - 3 * 0.28rem - .6rem) / 4) * 78 / 100);
}

.pi-image {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.pi-image>img {
    width: 100%;
    height: calc(((100vw - 3 * 0.28rem - .6rem) / 4) * 78 / 100);
    /* height: calc(100% * 78 / 100); */
}

.project-item:nth-of-type(4n) {
    margin-right: 0px;
}

.pi-desc {
    display: flex;
    flex-direction: row;
    margin-top: .2rem;
    align-items: center;
    overflow: hidden;
}

.pi-desc>img {
    width: .3rem;
    height: .3rem;
    border-radius: 50%;
}

.title-wrap {
    flex: 1;
    margin-left: .08rem;
    height: .34rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.title-wrap>p {
    width: 100%;
    color: #121212;
    font-size: .14rem;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.title-wrap>span {
    font-size: .12rem;
    color: #374151;
    font-weight: 300;
}

#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #121212;
    height: .6rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0px .3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#footer>.links {
    margin-left: auto;
}
#footer-h5 {
    margin-top: .24rem;
    background-color: #121212;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .24rem 0rem;
}
#footer-h5 > .links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
#footer-h5 > p {
    text-align: center;
    font-weight: 400;
    color: #fff;
    
}
.fdesc1{
    font-size: .14rem;
    line-height: .38rem;
}
.fdesc2 {
    font-size: .12rem;
}

.footer-logo {
    width: .8rem;
    margin-right: .2rem;
}

.copyright {
    color: white;
    font-size: .12rem;
    font-weight: 400;
}

.links img {
    width: .2rem;
    margin-left: .2rem;
}

#header-h5 {
    display: none;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.11);
}

#header-h5 .header-top {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: .88rem;
}
#header-h5 .header-top > a {
    position: absolute;
    left: .3rem;
    top: .27rem;
    transition: all 0.3s;
}

.h5-search-btn {
    width: .32rem;
    height: .32rem;
}

.address {
    position: relative;
}

/* .address:hover>.address-wrap {
    display: block;
} */

.address-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    z-index: 9;
}

.address-content {
    margin-top: .08rem;
    width: 3.78rem;
    box-sizing: border-box;
    background-color: #fff;
    padding: .2rem;
    padding-bottom: .08rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}

.address-content::after {
    content: '';
    position: absolute;
    background-color: white;
    height: .1rem;
    width: .1rem;
    top: .04rem;
    left: .2rem;
    z-index: -1;
    transform: rotate(45deg);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.35);
}

.address-item {
    width: .75rem;
    height: .28rem;
    box-sizing: border-box;
    border: 1px solid #D8D8D8;
    border-radius: 3px;
    color: #374151;
    font-size: .14rem;
    font-weight: 400;
    text-align: center;
    line-height: .28rem;
    margin-right: .12rem;
    margin-bottom: .12rem;
    transition: all .3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.address-item:hover {
    border: 1px solid #58A474;
    /* color: #58A474; */
    background-color: #58A474;
    color: #fff;
}

.address-item-active {
    border: 1px solid #58A474;
    /* color: #58A474; */
    background-color: #58A474;
    color: #fff;
    
}

.address-item:nth-of-type(4n) {
    margin-right: 0rem;
}

.filter {
    position: relative;
}
/* .filter:hover > .filter-wrap {
    display: block;
} */
.filter-wrap {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    z-index: 9;
}
.filter-content {
    margin-top: .08rem;
    box-sizing: border-box;
    background-color: #fff;
    padding: .2rem;
    padding-bottom: .08rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}
.filter-item {
    width: 100%;
    height: .28rem;
    box-sizing: border-box;
    border: 1px solid #D8D8D8;
    border-radius: 3px;
    color: #374151;
    font-size: .14rem;
    font-weight: 400;
    text-align: center;
    line-height: .28rem;
    margin-bottom: .12rem;
    transition: all .3s;
    white-space: nowrap;
    padding: 0rem .12rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.filter-content::after {
    content: '';
    position: absolute;
    background-color: white;
    height: .1rem;
    width: .1rem;
    top: .04rem;
    right: .2rem;
    z-index: -1;
    transform: rotate(45deg);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.35);
}
.filter-item:hover {
    border: 1px solid #58A474;
    color: #58A474;
}

.filter-item-active {
    border: 1px solid #58A474;
    color: #58A474;
}
.detail-container {
    width: 100%;
}
.banner-img {
    position: relative;
    background: linear-gradient(357.58deg, rgba(0, 0, 0, 0.6) 2.06%, rgba(255, 255, 255, 0) 98.02%);
backdrop-filter: blur(2px)
}
.banner-img > img{
    width: 100%;
    min-height: 2rem;
    max-height: 6rem;
    object-fit: cover;
    object-position: center;
}
.banner-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    box-sizing: border-box;
    padding: 0px .4rem .4rem .4rem;
    width: 100%;
    background: linear-gradient(357.58deg, rgba(0, 0, 0, 0.3) 2.06%, rgba(255, 255, 255, 0) 80.02%);
    backdrop-filter: blur(1px);
}
.banner-title > p {
    font-size: .24rem;
    font-weight: 500;
    margin-bottom: .2rem;
    line-height: .32rem;
}
.banner-title > span {
    font-size: .12rem;
    font-weight: 400;
}
.detail-content {
    padding: .24rem 0.24rem;
    padding-bottom: .5rem;
    margin: 0 auto;
    width: 11rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.dc-left {
    width: 7.2rem;
    padding-bottom: .24rem;
}
.dc-right {
    width: 3.4rem;
}
.detail-info {
    box-sizing: border-box;
    padding: .24rem .24rem .08rem .24rem;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.08);
    border-radius: .12rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.info-item {
    width: calc((100% - .24rem) / 2);
    font-size: .16rem;
    margin-right: .24rem;
    margin-bottom: .16rem;
    display: flex;
    flex-direction: row;
}
.info-item:nth-of-type(2n) {
    margin-right: 0;
}
.info-item > .label {
    width: 1rem;
    min-width: 1rem;
    font-weight: 600;
    color: #121212;
    line-height: .3rem;
}

.info-item > .desc {
    width: calc(100% - 1rem);
    font-weight: 400;
    color: #4a4a4a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: .3rem;
}
.info-item-len {
    margin-top: .16rem;
    width: 100%;
}
.info-item-len > .desc {
    white-space: normal;
    overflow: visible;
    line-height: .3rem;
}
.dash-line {
    width: 100%;
    height: 1px;
    border-top: 1px dashed #D8D8D8;
}
.dc-tags-wrap {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    box-sizing: border-box;
    padding: .2rem 0;
}
.info-item-m-wrap > .desc {
    font-weight: 400;
    color: #4a4a4a;
    overflow-wrap: anywhere;
    white-space: normal;
    line-height: .24rem;
    margin-bottom: 0.12rem;
}

.detail-title {
    font-size: .16rem;
    color: #4A4A4A;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid #D8D8D8;
    line-height: .44rem;
}
.dc-tag-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #E5E7EB;
    border-radius: .22rem;
    font-size: .14rem;
    color: #374151;
    font-weight: 400;
    padding: .1rem .16rem;
    margin-right: .1rem;
    transition: all .3s;
    cursor: pointer;
    margin-bottom: .12rem;
}
.dc-project-wrap {
    padding: .2rem;
    box-sizing: border-box;
}
.dc-project-wrap > .project-item {
    width: 100%;
    margin-right: 0;
}
.dc-project-wrap > .project-item .pi-image > img {
    height: 100%;
}
.project-item > a {
    width: 100%;
}
.context {
    margin-top: .3rem;
    font-weight: 400;
font-size: 16px;
line-height: 30px;
/* color: #4A4A4A; */
}
.h2 {
    font-weight: 400;
font-size: 16px;
line-height: 22px;
color: #121212;
margin: .3rem 0rem .2rem 0rem;
}
.dc-left .dc-tags-wrap {
    margin: 0;
    padding: 0;
}
.other-page {
    font-size: 16px;
line-height: 22px;

color: #121212;
margin-bottom: .2rem;
}
.other-page > a {
    text-decoration-line: underline;
    color: #121212!important;
}
.detail-content .context img {
    width: 100%!important;
    height: auto!important;
    margin: .2rem 0rem;

}
.context p {
    margin: .12rem 0px;
}
.context h1, .context h2, .context h3, .context h4, .context h5, .context h6  {
    margin: .14rem 0px;
}
.detail-content .context ul ,
.detail-content .context ol{
    padding-left: .3rem;
    box-sizing: border-box;
}
#viewer-images {
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
}
.loading-data-block {
    width: calc(100% - .6rem);
    height: calc(100% - .6rem);
    position: absolute;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255, .2);
    min-height: 3rem;
}
.loading-data-block > img {
    width: 50px;
    height: 50px;
    animation: rotating 1.5s infinite;
    position: fixed;
    top: calc(100vh * 50 / 100);
}
.loading-more {
    padding-top: .24rem;
    padding-bottom: 1rem;
}
.loading-more > .loading-img {
    width: 35px;
    height: 35px;
    animation: rotating 1.5s infinite;
}

.search {
    position: relative;
}
.search-hot {
    display: none;
    position: absolute;
    top: 100%;
    left: .16rem;
    width: calc(100% - .32rem);
    background-color: #fff;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
    box-sizing: border-box;
    padding: .12rem;
    font-size: .14rem;
    color: #374151;
    z-index: 10;
}
.search-hot > p {
    line-height: .24rem;
    cursor: pointer;
}
.search-hot > p:hover {
    color: #58A474;

}
.dc-project-wrap-h5 {
    width: 100%;
    display: none;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}
.dc-project-wrap-h5 > .project-item {
    width: calc((100% - 1 * .28rem) / 2);
    margin-right: .28rem;
    margin-bottom: .4rem;
}
.dc-project-wrap-h5 > .project-item .pi-image > img {
    height: 100%;
}
.dc-project-wrap-h5 > .project-item:nth-of-type(2n) {
    margin-right: 0rem;
}
.h2-h5 {
    display: none;
}

#footer-h5 > a:last-child img {
    margin-right: .2rem;
}

#header-h5 > .header-filter {
    display: flex;
}
#header-h5 > .tags {
    display: flex;
}
#header-h5 .header-h5-search-params-wrap  .search {
    display: flex;
    width: calc(100% - .6rem);
    margin-left: .3rem;
    margin-right: .3rem;
    margin-top: .16rem;
    margin-bottom: .16rem;

}

#header-h5 > .search > .search-keywords {
    flex: 1;
}
.highlight-txt {
    background-color: rgba(88, 164, 117, 0.2);
    display: block;
    /* color: #fff; */
}
.no-more {
    padding-top: 0.24rem;
    padding-bottom: 1rem;
}
.no-data {
    width: calc(100% - .6rem);
    height: calc(100% - .6rem);
    position: absolute;
    align-items: center;
    justify-content: center;
    display: flex;
}
.no-data > img {
    width: 1.2rem;
}

.detail-search-btn {
    width: .32rem;
    height: .32rem;
}
.h5-search-btn-wrap {
    width: 1.74rem;
    height: .48rem;
    padding: .1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: row-reverse;
    border: 1px solid #E5E7EB;
    border-radius: 0.3rem;
    align-items: center;
    margin-left: auto;
}
.back-btn {
    display: none;
    flex-direction: row;
    align-items: center;
    font-size: .14rem;
    width: 11rem;
    margin: 0 auto;
    margin-top: .24rem;
    cursor: pointer;
    padding: 0rem .24rem;

}
.back-btn > img {
    width: .12rem;
    margin-right: .1rem;

}
#footer .links a {
    position: relative;
}
.links a {
    display: flex;
    flex-direction: row;
}
.wxin-img:hover .links-item-alert{
    display: block;
}
.links-item-alert {
    width: 1.5rem;
    height: 1.5rem;
    padding: .12rem;
    box-sizing: border-box;
    position: absolute;
    display: none;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.35);
    top: -1.65rem;
    background-color: #fff;
    border-radius: .1rem;
    left: -0.5rem;
}
.links-item-alert > img {
    width: 100%;
    height: 100%;
    margin: 0;
}
.links-item-alert::after {
    content: '';
    position: absolute;
    background-color: white;
    height: .1rem;
    width: .1rem;
    top: calc(100% - 0.05rem);
    left: .7rem;
    z-index: -1;
    transform: rotate(45deg);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.35);
}
.links-item-alert2 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #4a4a4a;
    box-sizing: border-box;
    position: absolute;
    display: none;
    /* width: 2rem; */
    left: -0.8rem;
    top: -1.67rem;
    width: 1.4rem;
}
.links-item-alert2 > .con {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.35);
    border-radius: .1rem;
    height: 1.5rem;
    font-size: .14rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: center;
    position: relative;
}
.links-item-alert2 > .con::after {
    content: '';
    position: absolute;
    background-color: white;
    height: .1rem;
    width: .1rem;
    top: calc(100% - 0.05rem);
    z-index: -1;
    transform: rotate(45deg);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.35);
    left: 1.05rem!important;
}
.email-txt-wrap:hover .links-item-alert2{
    display: flex;

}
.email-txt-btn {
    border: 1px solid #58A474;
    border-radius: 2px;
    color: #58A474;
    font-size: .14rem;
    font-weight: 400;
    padding: .04rem .08rem;

}
#footer .email-txt {

}
#footer .links-item-alert2 .con > span {
    color: #58A474;
    margin-top: .1rem;
}

#header-h5 .header-filter {
    flex-wrap: wrap;
}

.h5-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.31);
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
    opacity: 0;
    transition: all 0.3s;
}
.h5-wxin-modal {
    width: 50%;
    padding: 0.26rem .3rem;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: .12rem;
    text-align: center;
}
.h5-wxin-modal > img {
    width: 100%;
}
.h5-clost-btn {
    width: .15rem;
    height: .15rem;
    margin-top: .24rem;
}
.h5-wxin-modal-btn {
    width: 100%;
    text-align: center;
    padding: .08rem .18rem;
    color: #58A474;
    font-size: .14rem;
    font-weight: 400;
    margin-top: 0.12rem;
    box-sizing: border-box;
    border: 1px solid;
}

.banner-tags-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: .2rem;
}
.banner-tag-item {
    border-radius: 1rem;
    border: 1px solid #E5E7EB;
    margin-right: .12rem;
    margin-bottom: .12rem;
    padding: .08rem .16rem;
    color: #fff;
    font-size: .14rem;
    font-weight: 400;
    text-align: center;
}
.banner-tag-item:hover{
    border: 1px solid #58A474;
    box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
    /* color: #58A474; */
    background-color: #58A474;
    color: #fff;
}


@keyframes rotating {
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 576px) {
    .project-item {
        width: 100%;
        margin-right: .0rem !important;
        margin-bottom: .2rem;
    }
    .info-item {
        width: 100%;
        margin-right: 0px;
    }
    .dc-project-wrap-h5 > .project-item {
        width: 100%;
        margin-right: 0rem!important;
        margin-bottom: .24rem;
    }
     .project-item .pi-image > img{
        height: calc(((100vw - 0 * 0.28rem - .6rem) / 1) * 78 / 100);
    }
    .dc-project-wrap-h5 > .project-item .pi-image > img {
        height: 100%;
    }
    
}

@media screen and (min-width: 576px) and (max-width: 768px) {
    .project-item {
        width: calc((100% - 1 * .28rem) / 2);
        margin-right: .28rem !important;
        margin-bottom: .4rem;
    }
    .project-item .pi-image > img{
        height: calc(((100vw - 1 * 0.28rem - .6rem) / 2) * 78 / 100);
    }

    .project-item:nth-of-type(2n) {
        margin-right: 0px !important;
    }

    .project-item:nth-of-type(3n) {
        margin-right: .28rem;
    }
    .dc-project-wrap-h5 > .project-item {
        width: calc((100% - 1 * .28rem) / 2);
        margin-right: .28rem;
        margin-bottom: .4rem;
    }
    .dc-project-wrap-h5 > .project-item:nth-of-type(2n) {
        margin-right: 0rem !important;
    }
    .dc-project-wrap > .project-item .pi-image > img {
        height: 100%;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    .project-item {
        width: calc((100% - 2 * .28rem) / 3);
        margin-right: .28rem !important;
        margin-bottom: .4rem;
    }
    .project-item .pi-image > img{
        height: calc(((100vw - 2 * 0.28rem - .6rem) / 3) * 78 / 100);
    }

    .project-item:nth-of-type(3n) {
        margin-right: 0px !important;
    }
    .dc-project-wrap-h5 > .project-item {
        width: calc((100% - 1 * .28rem) / 2);
        margin-right: .28rem;
        margin-bottom: .4rem;
    }
    .dc-project-wrap-h5 > .project-item:nth-of-type(2n) {
        margin-right: 0rem !important;
    }
    .dc-project-wrap > .project-item .pi-image > img {
        height: 100%;
    }
}

@media screen and (min-width: 1200px) {
    .detail-content {
        width: 11rem;
    }
}

@media screen and (min-width: 768px) {
    #header-h5 {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .loading-more {
        padding-top: .12rem;
        padding-bottom: .12rem;
    }
    .loading-more > .loading-img {
        width: 25px;
        height: 25px;
        animation: rotating 1.5s infinite;
    }
    .no-more {
        padding: 0px;
    }
    #header-h5 {
        display: flex;
        flex-direction: column;
    }

    .login-wrap label > input {
        width: 300px!important;
    }

    #header {
        display: none;
    }
    #footer-h5{
        display: flex;
    }
    #footer {
        display: none;
    }
    .detail-header-h5 .search-keywords {
        max-width: 2.1rem;
        width: 1rem;
    }
    #header-h5 .search {
        /* width: calc(100% - 0.6rem); */
        /* margin-left: 0; */
    }
    #header-h5 .search-keywords {
        flex: 1;
    }
    #header-h5 .header-filter {
        padding: 0rem 0.3rem 0.12rem 0.3rem;
    }
    #header-h5 .header-filter > .filter {
        /* margin-left: .1rem; */
    }
    #header-h5 .tag-item {
        margin-bottom: .1rem;
    }
    #header-h5 > .tags {
        margin-bottom: .14rem;
    }
    .address-wrap {
        width: 100vw;
        left: -0.3rem;
    }
    .address-content {
        width: 100%;
    }

    .address-content::after {
        content: '';
        position: absolute;
        background-color: white;
        height: 0.1rem;
        width: 0.1rem;
        top: 0.04rem;
        left: 0.5rem;
        z-index: -1;
        transform: rotate(45deg);
        box-shadow: 0px 2px 10px rgb(0 0 0 / 35%);
    }
    .banner-title {
        width: 100%;
        padding: 0px 0.2rem 0.2rem 0.2rem;
        background: linear-gradient(357.58deg, rgba(0, 0, 0, 0.6) 2.06%, rgba(255, 255, 255, 0) 80.02%);
backdrop-filter: blur(1px);
    }
    .banner-title > p {
        font-size: .2rem;
        line-height: .24rem;
    }
    .detail-content {
        padding: .24rem 0.24rem;

    }
    .back-btn {
        display: block;
    }
    .banner-tag-item {
        font-size: .09rem;
        padding: 0.05rem 0.08rem;
    }
}
@media screen and (max-width: 1100px){
    .dc-right {
        display: none;
    }
    .dc-project-wrap-h5 {
        display: flex;
    }
    .h2-h5 {
        display: block;
    }
    .detail-content {
        padding: .24rem 0.24rem;
        padding-bottom: .5rem;
        width: 100%;
        box-sizing: border-box;
    }
    .dc-left {
        width: 100%;
    }
}