123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- @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;
- }
- }
|