style.css 1.2 KB

123456789101112131415161718192021222324252627282930
  1. @charset "utf-8";
  2. /* 取消浮动,转块级元素 */
  3. .clear-both::before,.clear-both::after{
  4. content: '';
  5. display: block;
  6. clear: both;
  7. }
  8. .grad{
  9. background: -webkit-linear-gradient(left, #ff5c5c , #ff8f8f); /* Safari 5.1 - 6.0 */
  10. background: -o-linear-gradient(right, #ff5c5c, #ff8f8f); /* Opera 11.1 - 12.0 */
  11. background: -moz-linear-gradient(right, #ff5c5c, #ff8f8f); /* Firefox 3.6 - 15 */
  12. background: linear-gradient(to right, #ff5c5c , #ff8f8f); /* 标准的语法 */
  13. }
  14. .page_vip{
  15. background: -webkit-linear-gradient(45deg, #262729, #3e484d); /* Safari 5.1 - 6.0 */
  16. background: -o-linear-gradient(45deg, #262729, #3e484d); /* Opera 11.1 - 12.0 */
  17. background: -moz-linear-gradient(45deg, #262729, #3e484d); /* Firefox 3.6 - 15 */
  18. background: linear-gradient(45deg, #262729, #3e484d); /* 标准的语法 */
  19. }
  20. .to_buy a{
  21. background: -webkit-linear-gradient(left, #ff5c5c , #ff8f8f); /* Safari 5.1 - 6.0 */
  22. background: -o-linear-gradient(right, #ff5c5c, #ff8f8f); /* Opera 11.1 - 12.0 */
  23. background: -moz-linear-gradient(right, #ff5c5c, #ff8f8f); /* Firefox 3.6 - 15 */
  24. background: linear-gradient(to right, #ff5c5c , #ff8f8f); /* 标准的语法 */
  25. }
  26. i{
  27. font-style: normal;
  28. }