.forge_body {
    position: relative;
    width: 100%;
    height: 100%;
}

.Astrid_wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    min-height: 100%;
    background: #fff;
}

.Astrid_box {
    position: relative;
    width: 100%;
    min-height: 100%;
}

.header-img {
    position: fixed;
    top: 0;
    width: 100%;
}

.header-img .bg-wrap {
    width: 100%;
}

.header-img .bg-box {
    position: relative;

    padding-bottom: 30%;
    width: 100%;
    height: 0;
}

.header-img .bg-box .slogn {
    position: absolute;
    left: 7%;
    top: 35%;
    z-index: 8;
}

.header-img .bg-box .slogn > p:first-child {
     font-size: 40px;
     font-weight: 600;
     letter-spacing: 2px;

     color: #fff;
}

.header-img .bg-box .slogn > p:last-child {
    margin-top: 22px;

    font-size: 33px;
    letter-spacing: 2px;

    color: #fff;
}

.header-img .bg-box .bg-inner {
    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: absolute;

    width: 100%;
    height: 100%;
}

.forge_body {
    position: relative;
    width: 100%;
    height: 100%;

    background-color: #fff;
}

/*分类导航栏*/
.nav-bar {
    box-sizing: border-box;
    padding: 1% 5%;
    max-width: 100%;
}

.nav-bar .lst-wrap {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.nav-bar .lst-block {
    display: inline-block;

    vertical-align: top;
    padding: 8px 0;
}

.nav-bar .lst-block .icon-wrap {
    display: inline-block;

    margin-top: 1px;
    margin-right: 9px;
    width: 2rem;

    vertical-align: top;
}

.nav-bar .lst-block .icon-box {
    overflow: hidden;

    position: relative;

    padding-bottom: 100%;
    width: 100%;
    height: 0;
}

.nav-bar .lst-block .icon-inner {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

.nav-bar .lst-block .icon-box img {
    width: 100%;
    height: 100%;

    transform: scale(1.2);
}

.nav-bar .lst-block .title {
    display: inline-block;

    vertical-align: top;

    font-size: 1.4rem;
    font-weight: 600;
    line-height: 2rem;
}

.nav-bar .lst-box {
    display: inline-block;

    vertical-align: top;
    width: calc(100% - 9rem);
}

.nav-bar .lst-box ul {
    display: inline-block;

    position: relative;

    padding: 6px 0;
    width: 100%;
}

.nav-bar .lst-box li {
    float: left;

    padding: 6px 0;
    width: 12.5%;

    line-height: 1.4rem;
    text-align: center;
}

.nav-bar .lst-box span {
    padding-bottom: 4px;

    font-size: 1.2rem;
    text-align: center;
    line-height: 1.2;

    cursor: pointer;
}

.nav-bar .lst-box span a {
    position: relative;
    display: inline-block;
}

.nav-bar .lst-box span a::after {
    content: "";

    position: absolute;
    bottom: -50%;
    left: 50%;

    width: 0;
    height: 3px;

    background-color: #c7000c;

    transform: translateX(-50%);
    transition: all .3s;
}

.nav-bar .lst-box span a:hover::after {
    width: 100%;
}

.nav-bar .lst-box .current a::after {
    width: 100%;
}

.nav-bar .lst-box .current a {
    font-weight: 600;
}

.nav-bar .lst-box span a:hover {
    font-weight: 600;
}

/*网站列表*/
.case-container {
    position: relative;
    margin-bottom: 1.5%;
    width: 100%;
    font-size: 0;
}

.case-pc .img-container {
    display: inline-block;
    overflow: hidden;

    position: relative;

    padding-bottom: 20%;
    box-sizing: border-box;
    width: 25%;

    vertical-align: top;
}

.case-pc .img-container_d {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

.case-pc .img-container_d .bg-img {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    background-image: url("../images/case_bg_1.jpg");
    background-size: 100% 100%;

    transition: all .5s .1s;
}

.case-pc .img-container_d:hover .bg-img {
    transform: scale(1.2);
}

.case-pc .img-container_d:hover .card > div {
    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding-bottom: 80%;

    background-color: rgba(199, 0, 12, 0.5);
}

.case-pc .img-container_d:hover .card > div .img-box {
    display: none;
}

.case-pc .img-container_d:hover .card > div > ul {
    display: none;
}

.case-pc .img-container_d:hover .card > div > .name {
    display: flex;
}

.case-pc .img-container_d .card {
    position: absolute;
    left: 0;
    bottom: 0;

    box-sizing: border-box;
    width: 100%;

    background-color: #00000060;
}

.case-pc .img-container_d .card .img-box {
    position: absolute;
    top: 50%;
    left: 5%;

    width: 60%;

    transform: translateY(-50%);
}

.case-pc .img-container_d .card .img-inner {
    position: relative;

    padding-bottom: 15%;
    width: 100%;
    height: 0;
}

.case-pc .img-container_d .card .img-box img {
    position: absolute;
    top: 0;
    left: 0;

    max-width: 100%;
    max-height: 100%;
}

.case-pc .img-container_d .card > div {
    position: relative;

    padding-bottom: 15%;
    width: 100%;

    transition: all .3s;
}

/*.case-pc .img-container_d .card > div:hover > .img-box img {*/
/*    transition: all .3s;*/
/*    transform: scale(1.1);*/
/*}*/

.case-pc .img-container_d .card > div > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(35% - 15px);
    height: 100%;
}

.case-pc .img-container_d .card > div > ul > li {
    margin-right: 16px;
    width: 20%;
}

.case-pc .img-container_d .card > div > ul > li a {
    display: block;
    overflow: hidden;
    position: relative;
    padding-bottom: 100%;
    width: 100%;
    height: 0;
}

.case-pc .img-container_d .card > div > ul > li a img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

.case-pc .img-container_d .card > div > .name {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.case-pc .img-container_d .card > div > .name > div:first-child {
    width: 100%;
    font-size: 23px;
    text-align: center;
    color: #fff;
}

.case-pc .img-container_d .card > div > .name > div:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    width: 100%;
    font-size: 20px;
    color: #fff;
}

.case-pc .img-container_d .card > div > .name > a {
    display: block;

    margin-top: 50px;
    border: 1px solid #fff;
    border-radius: 15px;
    padding: 2px 30px;

    font-size: 16px;
    text-align: center;

    color: #fff;
}

.case-pc .img-container_d .card > div > .name > div:nth-child(2):after {
    content: "";

    margin-left: 10px;
    border-radius: 10px;
    width: 20px;
    height: 2px;

    background-color: #fff;
}

.case-pc .img-container_d .card > div > .name > div:nth-child(2):before {
    content: "";

    margin-right: 10px;
    border-radius: 10px;
    width: 20px;
    height: 2px;

    background-color: #fff;
}

/*小程序列表*/
.case-wx {
    position: relative;

    width: 100%;
}

.case-wx .lst-wrap {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;

    box-sizing: border-box;
    padding: 0 1%;
    width: 100%;
}

.case-wx .lst-box {
    box-sizing: border-box;
    padding: 15px 20px;
    width: 25%;
}

.case-wx .lst-box .lst-inner {
    width: 100%;
    height: 100%;
}

.case-wx .lst-box .lst-item-wrap {
    width: 100%;
}

.case-wx .lst-box .lst-item-wrap:hover {
    box-shadow: 0 9px 15px 0 #dedede;
}

.case-wx .lst-box .lst-item-wrap:hover .lst-item-inner {
    visibility: hidden;
}

.case-wx .lst-box .lst-item-wrap:hover .lst-item-cover {
    visibility: visible;
}

.case-wx .lst-box .lst-item-wrap:hover .lst-item-qr {
    visibility: visible;
}

.case-wx .lst-box .lst-item-box {
    position: relative;

    padding-bottom: 175%;
    width: 100%;
    height: 0;
}

.case-wx .lst-box .lst-item-box .lst-item-cover {
    visibility: hidden;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;

    width: 100%;
    height: 100%;
}

.case-wx .lst-box .lst-item-box .lst-item-qr {
    visibility: hidden;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;

    width: 100%;
    height: 100%;
}

.case-wx .lst-box .lst-item-box .lst-item-qr .qr-wrap {
    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: flex-end;

    box-sizing: border-box;
    padding-bottom: 3%;
    width: 100%;
    height: 100%;

    background: linear-gradient(0, #ffffff 22%, #ffffff00 100%);
}

.case-wx .lst-box .lst-item-box .lst-item-qr .qr-box {
    width: 40%;
}

.case-wx .lst-box .lst-item-box .lst-item-qr .qr-box .qr-inner {
    position: relative;

    padding-bottom: 100%;
    width: 100%;
    height: 0;
}

.case-wx .lst-box .lst-item-box .lst-item-qr img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.case-wx .lst-box .lst-item-box .lst-item-qr .tip {
    height: 4em;
    line-height: 4em;
    font-size: 1.2rem;
    text-align: center;
}

.case-wx .lst-box .lst-item-box .lst-item-inner {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
    box-sizing: border-box;
    border: 1px solid #e3e2e5;
    border-radius: 2px;
    width: 100%;
    height: 100%;
    font-size: 1rem;
}

.case-wx .lst-box .lst-item-box .logo-wrap {
    position: relative;

    padding-bottom: 100%;
    width: 100%;
    height: 0;
}

.case-wx .lst-box .lst-item-box .logo-box {
    position: absolute;
    top: 0;
    left: 0;

    box-sizing: border-box;
    padding:25%;
    width: 100%;
    height: 100%;
}

.case-wx .lst-box .lst-item-box .logo-box .logo-inner {
    border: 1px solid #e6e4e8;
    border-radius: 100%;
    width: 100%;
    height: 100%;
}

.case-wx .lst-box .lst-item-box .name {
    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;

    font-size: 1.8rem;
}

.case-wx .lst-box .lst-item-box .summary {
    margin-top: 5%;
    padding: 0 5%;
    box-sizing: border-box;
    width: 100%;

    font-size: 1.2em;
    line-height: 2em;
    text-indent: 2em;
    color: #9797a1;
}

.case-wx .lst-box .lst-item-box .name:after {
    content: "";
    display: inline-block;
    margin: .5em auto .2em;
    width: 1.1em;
    height: 4px;
    background: #000000a3;
}

@media screen and (max-width: 1023px) {
    .header-img .bg-box .slogn > p:first-child {
        font-size: 2.5rem;
    }

    .header-img .bg-box .slogn > p:last-child {
        margin-top: 1rem;
        font-size: 1.6rem;
    }

    .header-img .bg-box {
        padding-bottom: 70%;
    }

    .nav-bar .lst-box li {
        white-space: nowrap;
        padding: 4px 2%;
        width: 45.5%;
    }

    .nav-bar .lst-block .icon-wrap {
        margin-right: .1rem;
    }

    .nav-bar {
        padding: 1% 2%;
    }

    .nav-bar .lst-box ul {
        overflow-x: scroll;
        display: flex;
        align-items: center;
        padding: 2px 0 6px;
    }

    .nav-bar .lst-box ul::-webkit-scrollbar {
        display: none;
    }

    .case-pc .img-container {
        padding-bottom: 80%;
        width: 100%;
    }

    .case-pc .img-container_d .card > div > ul > li {
        margin-right: 10%;
        width: 2rem;
    }

    .nav-bar .lst-wrap {
        display: flex;
        align-items: center;
    }

    .case-pc .img-container_d .card .img-box {
        width: 55%;
    }

    .case-pc .img-container_d .card > div > .name > div:first-child {
        font-size: 2rem;
    }

    .case-pc .img-container_d .card > div > .name > div:nth-child(2) {
        font-size: 1.6rem;
    }

    .case-wx .lst-box {
        padding: .4rem .8rem;
        width: 100%;
    }

    .case-wx .lst-box .lst-item-box .logo-box {
        padding: 10%;
    }

    .case-wx .lst-box .lst-item-box .summary {
        font-size: .6rem;
    }

    .case-wx .lst-box .lst-item-box .logo-wrap {
        position: relative;
        margin: 10% auto 0;
        padding-bottom: 60%;
        width: 60%;
        height: 0;
    }

    .case-wx .lst-box .lst-item-box .summary {
        margin-top: 5%;
        padding: 0 5%;
        box-sizing: border-box;
        width: 100%;
        font-size: 1.6rem;
        text-align: center;
        line-height: 1.5;
        color: #666666;
    }

    .case-wx .lst-box .lst-item-box .name {
        box-sizing: border-box;
        padding: 0 5%;
        font-size: 2rem;
        text-align: center;
    }

    .forge_body {
        margin-top: 70% !important;
    }

    .header-img .bg-box .bg-inner {
        background-size: cover !important;
        background-attachment: initial !important;
    }

    .nav-bar .lst-block {
        padding: 10px 0;
    }

    .case-wx .lst-box .lst-item-box .lst-item-qr .tip {
        font-size: 1.4rem;
    }

    .nav-bar .lst-block .title {
        font-size: 1.5rem;
    }

    .nav-bar .lst-box span {
        font-size: 1.4rem;
    }

    .nav-bar .lst-block .title > a > span {
        display: none;
    }

    .nav-bar .lst-box {
        flex-grow: 1;
        box-sizing: border-box;
        padding-left: 2%;
    }

    .case-wx .lst-wrap {
        padding: initial;
    }

    .tip_bottom {
        line-height: 30px !important;
        height: 30px !important;
        font-size: 14px !important;
    }
}
