/*图片识别不同屏幕*/
.imgCss{height: 430px; position: absolute; right: 15%; top: 26%;}
@media screen and (min-width: 1201px) {
    .imgCss {height: 430px; position: absolute; right: 15%; top: 26%;}
}
/* css 注释说明：设置了浏览器宽度不小于1201px时 */

@media screen and (max-width: 1200px) {
    .imgCss {height: 430px; position: absolute; right: 10%; top: 26%;}
}
/* 设置了浏览器宽度不大于1200px时 */

@media screen and (max-width: 900px) {
    .imgCss {height: 430px; position: absolute; right: 4%; top: 26%;}
}
/* 设置了浏览器宽度不大于900px时 */

@media screen and (max-width: 500px) {
    .imgCss {height: 300px; width: 180px; right: 28%; top: 25%;}
}
/* 设置了浏览器宽度不大于500px时 */


/*图片识别不同屏幕*/
.imgCss2{height: 430px; position: absolute; right: 15%; top: 26%;}
@media screen and (min-width: 1201px) {
    .imgCss2 {height: 430px; position: absolute; right: 15%; top: 26%;}
}
/* css 注释说明：设置了浏览器宽度不小于1201px时 */

@media screen and (max-width: 1200px) {
    .imgCss2 {height: 430px; position: absolute; right: 10%; top: 26%;}
}
/* 设置了浏览器宽度不大于1200px时 */

@media screen and (max-width: 900px) {
    .imgCss2 {height: 430px; position: absolute; right: 4%; top: 26%;}
}
/* 设置了浏览器宽度不大于900px时 */

@media screen and (max-width: 500px) {
    .imgCss2 {height: 300px; width: 300px; right: 12%; top: 49%;}
}
/* 设置了浏览器宽度不大于500px时 */

/*H3识别不同屏幕*/
#divCss-100{}
@media screen and (max-width: 500px) {
    #divCss-100 {vertical-align: middle; text-align: center;}
}
/* 设置了浏览器宽度不大于500px时 */

/*H3识别不同屏幕*/
#h3Css-100{}
@media screen and (max-width: 500px) {
    #h3Css-100 {position: static; top: 25%; font-size: 24px;}
}

#h3Css-200{}
@media screen and (max-width: 500px) {
    #h3Css-200 {position: static; top: 25%; font-size: 24px;}
}

#h3Css-300{}
@media screen and (max-width: 500px) {
    #h3Css-300 {font-size: 24px;}
}
/* 设置了浏览器宽度不大于500px时 */

/*p识别不同屏幕*/
#pCss-100{top: 40%;}
@media screen and (max-width: 500px) {
    #pCss-100 {position: static; top: 45%; font-size: 15px; line-height: 28px;}
}
@media screen  and (max-width: 320px) {
    #pCss-100 {position: static; top: 45%; font-size: 13px; line-height: 28px;}
}

#pCss-101{top: 50%}
@media screen and (max-width: 500px) {
    #pCss-101 {position: static; top: 45%; font-size: 15px; line-height: 15px;}
}
@media screen  and (max-width: 320px) {
    #pCss-101 {position: static; top: 45%; font-size: 13px; line-height: 15px;}
}

#pCss-102{top: 56%}
@media screen and (max-width: 500px) {
    #pCss-102 {position: static; top: 45%; font-size: 15px; line-height: 20px;}
}
@media screen  and (max-width: 320px) {
    #pCss-102 {position: static; top: 45%; font-size: 13px; line-height: 20px;}
}

#pCss-200{}
@media screen and (max-width: 500px) {
    #pCss-200 {position: static; top: 45%; font-size: 15px; line-height: 28px;}
}
@media screen  and (max-width: 320px) {
    #pCss-200 {position: static; top: 45%; font-size: 13px; line-height: 28px;}
}
/* 设置了浏览器宽度不大于500px时 */

/*a识别不同屏幕*/
#aCss-100{top: 65%;}
@media screen and (max-width: 500px) {
    #aCss-100 {top: 45%; right: 40%;}
}

/*a识别不同屏幕*/
#aCss-200{}
@media screen and (max-width: 500px) {
    #aCss-200 {top: 40%; right: 40%;}
}
/* 设置了浏览器宽度不大于500px时 */

/*H3识别不同屏幕*/
#divCss2-100{}
@media screen and (max-width: 500px) {
    #divCss2-100 {vertical-align: middle; text-align: center;}
}

.fontCss{
    text-align: center; color: #ffffff;
}

.displayCss{
    display: none;
}

.h2Font-1{}
@media screen and (max-width: 500px) {
    .h2Font-1 {font-size: 24px;}
}

#pFont{font-size: 30px;}
@media screen and (max-width: 500px) {
    #pFont {font-size: 15px; line-height: 28px;}
}
@media screen  and (max-width: 320px) {
    #pFont {font-size: 13px; line-height: 28px;}
}
/* 设置了浏览器宽度不大于500px时 */

.university{}
@media screen and (max-width: 500px) {
    .university {width: 120px; height: 120px;}
}

::-webkit-scrollbar {/*隐藏滚轮*/
    display: none;
}

.aStyle {
    color: #8693a7;
    text-decoration: none;
}

.lineCss {
    height:1px;
    width:100%;
    background:#eee;
    overflow:hidden;
}

