/*公共样式*/
body * {
    box-sizing: border-box;
    flex-shrink: 0;
}
body {
    font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
    Arial, PingFang SC-Light, Microsoft YaHei;
    margin: 0;
    padding: 0;
}

.flex-col {
    display: flex;
    flex-direction: column;
}
.flex-row {
    display: flex;
    flex-direction: row;
}
.justify-start {
    display: flex;
    justify-content: flex-start;
}
.justify-center {
    display: flex;
    justify-content: center;
}

.justify-end {
    display: flex;
    justify-content: flex-end;
}
.justify-evenly {
    display: flex;
    justify-content: space-evenly;
}
.justify-around {
    display: flex;
    justify-content: space-around;
}
.justify-between {
    /*display: flex;*/
    /*justify-content: space-between;*/
}
.align-start {
    display: flex;
    align-items: flex-start;
}
.align-center {
    display: flex;
    align-items: center;
}
.align-end {
    display: flex;
    align-items: flex-end;
}
/*自定义滚动条样式*/
.custom-scroll::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    /*background-color: #ddd;*/
}
/*公共样式end*/
/*大图*/
.page {
    position: relative;
    width: 1920px;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    overflow: hidden;
    margin-top: -70px;
    margin-bottom: 100px;
}

.bd1 {
    width: 1920px;
    height: 100%px;
}

.info4 {
    width: 40px;
    height: 20px;
    display: block;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 20px;
    font-family: SourceHanSansCN-Medium;
    white-space: nowrap;
    line-height: 20px;
    text-align: left;
    margin: 13px 0 0 50px;
}

.outer2 {
    z-index: 14;
    position: relative;
    width: 1920px;
    height: 550px;
    overflow: hidden;
    background: url("/static/images/case/case.png")
    100% no-repeat;
}

.img1 {
    z-index: 15;
    position: absolute;
    left: 0;
    top: 0;
    width: 1920px;
    height: 550px;
}

.word3 {
    width: 208px;
    height: 34px;
    display: block;
    overflow-wrap: break-word;
    color: rgba(74, 74, 74, 1);
    font-size: 34px;
    letter-spacing: 0.6580644845962524px;
    font-family: SourceHanSansCN-Medium;
    white-space: nowrap;
    line-height: 34px;
    text-align: left;
    margin: 80px 0 0 856px;
}

.txt1 {
    width: 138px;
    height: 14px;
    display: block;
    overflow-wrap: break-word;
    color: rgba(155, 155, 155, 1);
    font-size: 14px;
    text-transform: uppercase;
    font-family: SourceHanSansCN-Medium;
    white-space: nowrap;
    line-height: 14px;
    text-align: center;
    margin: 10px 0 0 891px;
}

.outer3 {
    width: 1400px;
    height: 380px;
    margin: 80px 0 0 260px;
}

.bd2 {
    z-index: 19;
    position: relative;
    width: 326px;
    height: 380px;
    border-radius: 0;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin-left: 20px;
}
/*效果二：放大 修改scale(放大的值)*/
.bd2{
    transition: All 0.4s ease-in-out;
    -webkit-transition: All 0.4s ease-in-out;
    -moz-transition: All 0.4s ease-in-out;
    -o-transition: All 0.4s ease-in-out;
}

.outer3:last-child{
    display: block;
}
.bd2:hover{
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -o-transform: scale(1.02);
    -ms-transform: scale(1.02);
}

.pic2 {
    z-index: 20;
    position: absolute;
    left: 0;
    top: 0;
    width: 326px;
    height: 380px;
    cursor: pointer;
}

.outer4 {
    width: 1221px;
    height: 18px;
    margin: 30px 0 0 260px;
    cursor: pointer;
}

.info5 {
    width: 147px;
    height: 18px;
    display: block;
    overflow-wrap: break-word;
    color: rgba(74, 74, 74, 1);
    font-size: 18px;
    letter-spacing: 0.34838706254959106px;
    font-family: SourceHanSansCN-Medium;
    white-space: nowrap;
    line-height: 18px;
    text-align: left;
    cursor: pointer;
    margin-left: 20px;
}

.outer5 {
    width: 1400px;
    height: 40px;
    margin: 10px 0 0 260px;
    cursor: pointer;
}

.word5 {
    width: 326px;
    height: 40px;
    display: block;
    overflow-wrap: break-word;
    color: rgba(155, 155, 155, 1);
    font-size: 14px;
    font-family: SourceHanSansCN-Regular;
    line-height: 20px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 20px;
}
.title-sty{
    margin-left: 20px;
    margin-bottom: 15px;
    height: 18px;
    font-size: 18px;
    font-family: SourceHanSansCN-Medium, SourceHanSansCN;
    font-weight: 500;
    color: #4A4A4A;
    line-height: 27px;
}

/*大图end*/
.case-sty{
    width: 1920px;
}
@media (min-width:120px) {
    .case-sty{
        margin-left: calc(50% - 960px);
    }
}
@media (max-width:1920px) {
    .case-sty{
        margin-left: 0;
    }
}
.case-sty{
    position: absolute;
}