/**==================
    详情样式1（图文）
=================== */

.SAM-detail1 {
    position: relative;
    overflow: hidden;
}

.SAM-detail1>img {
    width: 100%;
    min-height:450px;
}

.SAM-detail1-text {
    width: 40%;
    min-width: 700px;
    position: absolute;
    top: 7.5vw;
    left: 15vw;
    background-color: #fff;
    opacity: 0.8;
}

.SAM-detail1-text-inner {
    width: 85%;
    margin: 1.5rem auto 2.5rem;
}

.SAM-detail1-text-inner-header {
    padding: 1rem 0;
    border-bottom: 1px solid #111;
}

.SAM-detail1-text-inner-main {
    line-height: 1.375em;
}



@media only screen and (max-width: 768px) {
    .SAM-detail1-text-inner-header{
        font-size: 18px;
    }
}

/* iPads  */


@media only screen and (min-width: 768px) and (max-width: 960px) {
    .SAM-detail1-text-inner-header{
        font-size: 20px;
    }
    .SAM-detail1-text-inner-main{
        font-size: 16px;
    }
}

/* Desktops and laptops ----------- */

@media only screen and (max-width: 960px) {
    
    .SAM-detail1 {
        overflow: hidden;
    }
    
    .SAM-detail1>img {
        width: 150%;
    }
    .SAM-detail1-text {
        width: 90%;
        min-width: 0px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
       text-align: center;
    }
    
    .SAM-detail1-text-inner {
        width: 90%;
        margin: 1.5rem auto 2.5rem;
    }
}

@media only screen and (min-width: 960px) and (max-width: 1200px) {

}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {}

/* Large screens ----------- */

@media only screen and (min-width: 1960px) {}