12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /*头图片*/
- #toubu {
- background-image: url(../hd/img/banner.png);
- border: 0;
- width: 100%;
- display: block;
- }
- /*背景图*/
- .main {
- padding: 0 0 3rem 0;
- box-sizing: border-box;
- width: 100%;
- background: url(../hd/img/body_bg.jpg) no-repeat #0d072a;
- background-size: 100%;
- }
- body {
- width: 100%;
- height: 100%;
- background-size: 100%;
- }
- /*按钮样式*/
- .btn, .Tbtn {
- height: 3rem;
- background: #eb284e;
- color: #fff;
- font-size: 1.2rem;
- border: none;
- border-radius: 20px;
- box-shadow: 0px 0px 10px rgba(6,2,24,0.8) inset;
- appearance: none;
- -webkit-appearance: none;
- }
- /*头图片与按钮中间文字*/
- #tx {
- margin: auto;
- font-size: 0.75rem;
- color: #FFF;
- opacity: 0.6;
- padding-left: 1rem;
- padding-bottom: 10px;
- }
- /*通用的统一认证样式*/
- iframe {
- position: fixed;
- top: 0;
- margin:0;
- padding:0;
- left: 0;
- width: 100%;
- height:100%;
- -webkit-overflow-scrolling: touch;
- border: 0px;
- }
- .tips_header {
- display: flex;
- justify-content: center;
- text-align: center;
- align-items: center;
- }
- .tips_header .line {
- display: inline-block;
- flex: 1;
- border-top: 1px dotted #3d3955;
- }
|