login.css 1.1 KB

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