@charset "utf-8"; /** * PC端 */ @media screen and (min-width:768px){ body { background: #f6f6f6; min-width: 1184px; position: relative; text-align: center; } #errorPage{ width: 1184px; margin:5% auto; height: 450px; text-align: center; } #errorPage img{width:520px;} .desc{text-align: left;} .desc_link{ font-size: 30px; letter-spacing: 3px; color: #E15616; text-decoration: underline; display: inline-block; margin: 0 15px; font-weight: normal; } } /** * 移动端 */ @media screen and (max-width:768px){ body { background: #f6f6f6; position: relative; text-align: center; } #errorPage{ margin: 10% auto; } #errorPage img{ width:60%; } .desc{background:#F5F5F5;text-align: left;} .desc_link{ font-size: 8vw; letter-spacing: 3px; color: #E15616; text-decoration: underline; display: inline-block; margin: 0 3vw; font-weight: normal; } }