login.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. body{
  2. background-color: #fff;
  3. }
  4. .top_bg>div{
  5. /* width: 50%; */
  6. /* background-color: #fff; */
  7. margin: 15px 0;
  8. }
  9. .signup{
  10. width: 55%;
  11. padding: 0 30px;
  12. }
  13. .content .addvx{
  14. width: 35%;
  15. text-align: center;
  16. padding: 50px 0;
  17. line-height: 25px;
  18. font-size: 14px;
  19. border-left: 1px solid #f5f5f5;
  20. }
  21. .content .top_bg{
  22. width: 930px;
  23. background-color: #fff;
  24. /* background-image: linear-gradient(to bottom, #fdc70320, #fff 5%,#fff); */
  25. display: flex;
  26. /* margin-top: 20px; */
  27. padding: 20px 0;
  28. justify-content: center;
  29. flex-wrap: wrap;
  30. border-radius: 10px;
  31. box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
  32. }
  33. .addvx b{
  34. color: #0760C7;
  35. }
  36. .addvx img{
  37. margin: 15px auto;
  38. }
  39. .reg{
  40. text-align: left;
  41. padding: 15px 30px;
  42. font-size: 14px;
  43. width: 350px;
  44. max-width: 100%;
  45. }
  46. .reg input{
  47. height: 40px;
  48. margin-top: 10px;
  49. margin-bottom: 20px;
  50. border-color: #BBBBBB50;
  51. }
  52. .reg button{
  53. display: block;
  54. margin: 10px auto;
  55. background-color: #F6C845;
  56. width: 200px;
  57. border-radius: 10px;
  58. }
  59. @media screen and (max-width: 768px){
  60. .content>div{
  61. width: 100%;
  62. }
  63. .top_bg>div{
  64. width: 100% !important;
  65. }
  66. }