12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /**
- * 公用css
- * @time 20190731
- * @name test
- */
- body {
- margin: 0;
- padding: 0;
- background: transparent no-repeat;
- width: 1280px;
- height: 720px;
- color: #000000;
- overflow: hidden;
- font-family: SimHei;
- }
- img {
- border:0;
- }
- #myDefaultLink {
- display: inline-block;
- width: 1px;
- height: 1px;
- overflow: hidden;
- }
- .btn_focus_yellow {
- border: solid 4px yellow !important;
- outline: 0;
- border-radius: 5px;
- z-index: 200;
- -webkit-box-shadow: 0 0 10px yellow;
- box-shadow: 0 0 10px yellow;
- }
- div#default_tip_css {
- position: absolute;
- left: 340px;
- top: 325px;
- width: 600px;
- height: 70px;
- line-height: 70px;
- /*background: rgba(0, 0, 0, 0.71);*/
- /*background-color: #000000;
- opacity: 0.2;*/
- background-color: #6b6262;
- border-radius: 10px;
- text-align: center;
- font-size: 36px;
- color: yellow;
- border: solid 2px yellow;
- margin: auto;
- z-index: 333;
- visibility: hidden;
- }
- div#default_ykq_tip_css {
- position: absolute;
- left: 90px;
- top: 460px;
- width: 400px;
- height: 140px;
- line-height: 140px;
- background: rgba(0, 0, 0, 0.71);
- border-radius: 10px;
- text-align: center;
- font-size: 80px;
- color: yellow;
- border: solid 2px yellow;
- margin: auto;
- z-index: 333;
- visibility: hidden;
- }
- #wrapper {
- position: absolute;
- left: 0;
- top: 0;
- width: 1280px;
- height: 720px;
- overflow-x: hidden;
- overflow-y: hidden;
- }
- #wrapper .last_element {
- padding-bottom: 40px;
- box-sizing: content-box;
- }
|