/*巨幕*/
@import url("jumbotron.css");
/*介绍*/
.box_data{color: #999999;padding-right:2%;}
.box-one>div:last-child{display:flex;justify-content:center;align-items:center;}
.box-one>div>div:first-child{flex-grow: 1;flex-shrink:5;max-width:45%;text-align: center;}
.box-one>div>div:first-child img{max-width:80%;margin:0;padding:0;cursor:pointer;}
.box-one>div>div:first-child img:hover{opacity:.9;}
.box-one>div>div:last-child{flex-grow: 10;flex-shrink:1;}
.box-one>div h5{font-size:1rem;font-weight:bold;margin:2% 0;cursor:pointer;}
.box-one>div>div>h5{display: none;}
.box-one>div p{padding:1% 0;cursor:pointer;}
.box-one{margin:5% 0;}

/*响应式*/
@media screen and (min-width: 1200px){
    .box-one>div p,.box-one>div>div>h5{
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -ms-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;}
    /*主体内容*/
    .box-one>div>h5{display: none;}
    .box-one>div p{padding:2% 0;font-size:2rem;}
    .box-one>div>div>h5{display: block;font-size:2.4rem;font-weight:bold;}
}
@media screen and (min-width: 700px) and (max-width: 1199.8px) {
    .box-one>div h5,.box-one>div p{
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -ms-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;}
    .box-one>div h5{font-size:2rem;}
    .box-one>div p{padding:2% 0;font-size:1.8rem;}

}
@media screen and (min-width: 500px) and (max-width: 699.8px) {
    .box-one>div h5,.box-one>div p{
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -ms-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;}
    .box-one>div h5{font-size:1.6rem;}
    .box-one>div p{padding:2% 0;font-size:1.4rem;}

}