12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0,user-scalable=0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge,chrome=1">
- <meta name="renderer" content="webkit" />
- <meta content="yes" name="apple-mobile-web-app-capable">
- <meta content="yes" name="apple-touch-fullscreen">
- <style>
- button{
- border: 0;
- resize: none;
- outline: none;
- -webkit-appearance: none;
- }
- .success{
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .success>img:nth-child(1){
- width: 1.28rem;
- height: 1.28rem;
- margin-top: 1.28rem;
- }
- .success>p:nth-child(2){
- width: 5.54rem;
- font-family: PingFangSC-Medium;
- font-size: 0.4rem;
- font-weight: 600;
- color: #333333;
- letter-spacing: 0;
- text-align: center;
- margin-top: 0.4rem;
- }
- .success>p:nth-child(3){
- width: 5.54rem;
- height:0.88rem;
- font-family: PingFangSC-Regular;
- font-size: 0.3rem;
- color: #666666;
- letter-spacing: 0;
- text-align: center;
- line-height: 0.44rem;
- margin-top: 0;
- }
- .success>a:nth-child(4)>button{
- width: 4.8rem;
- height: 0.9rem;
- background: linear-gradient(to right, #58CDFF , #3296FB );
- color: #FFF;
- box-shadow: 0 2px 8px 0 rgba(67,175,252,0.40);
- border-radius: 6px;
- font-family: PingFangSC-Regular;
- font-size: 0.34rem;
- letter-spacing: 0;
- margin-top: 0;
- }
- a {
- text-decoration:none
- }
- </style>
- <script type="text/javascript" src="./js/viewport.js"></script>
- <title>企业节税</title>
- </head>
- <body>
- <div class="success">
- <img src="./assets/success@3x.png" alt="">
- <p>恭喜您,提交成功</p>
- <p>您的节税需求提交成功,我们的客服小姐姐会将在24小时内与您联系</p>
- <a href="tel:02028834746"><button>马上咨询</button></a>
- </div>
- <script type="text/javascript" src="./js/jquery-3.4.1.js"></script>
- </body>
- </html>
|