#pro_container {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 1300px;
    background: #0C192C url("../img/bg.png");
}
#pro_container .pic {
    position: relative;
    top: 115px;
    width: 1100px;
    height: 1100px;
    margin: 0 auto;
    background: #fff url("../img/bg.png");
    text-align: center;
    border-radius: 15px;
}
#pro_container .pic img {
    width: 80%;
    height: 50%;
    cursor: pointer;
}
#pro_container .pic .content {
    padding: 5px 0 0 68px;
    text-align: left;
    color: #F5B935;
    font-size: 18px;
}
#pro_container .pic .content .title {
    margin-top: 10px;
    font-size: 22px;
    color: #0D1A2C;
    font-weight: bold;
}
#pro_container .pic .content .left {
    float: left;
    width: 53%;
}
#pro_container .pic .content .right {
    float: right;
    width: 47%;
}
#pro_container .pic .content span {
    display: inline-block;
    margin-top: 6px;
}
#pro_container .pic .content span.t {
    color: #0D1A2C;
}
#pro_container .pic .back {
    width: 100px;
    height: 30px;
    margin: 60px auto;
    background: #0C1A2C;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 28px;
    cursor: pointer;
    transition: all .3s;
    clear: both;
}
#pro_container .pic .back:hover {
    color: #eee;
    box-shadow: 2px 3px 16px #B8ABAB;
}
.model {
    position: fixed;
    top: 10%;
    left: 10%;
    right: 10%;
    z-index: 1000;
    text-align: center;
    border: 1px solid #F5B935;
    background: #fff;
    transition: all .3;
    display: none;
}
.model img {
    position: relative;
    z-index: 999;
    max-width: 100%;
}
.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    z-index: 999;
    display: none;
}
.model span {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    color: #000;
    font-size: 28px;
    cursor: pointer;
    transition: all .3s;
    z-index: 1001;
}
.model span:hover {
    text-shadow: 1px 1px 5px #000;
}

/*0-600*/
@media screen and (max-width: 600px) {
    #pro_container {
        height: 900px;
    }
    #pro_container .pic {
        width: 95%;
        height: 700px;
        padding: 0px;
    }
    #pro_container .pic img {
        width: 90%;
        height: 30%;
    }

    #pro_container .pic .content {
        width: 96%;
        padding: 5px 34px 0 15px;
        font-size: 12px;
    }
    
    #pro_container .pic .content .title {
        font-size: 14px;
    }
    #pro_container .pic .content span {
        font-size: 12px;
        margin-top: 1px;
    }
    #pro_container .pic .back {
        position: absolute;
        top: 90%;
        left: 35%;
        margin: 10px auto;
    }
    .model {
        top: 32%;
    }
    #pro_container .pic .content {
        padding-right: 6px;
    }
}