123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- *{
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- font-family: 微软雅黑;
- list-style: none;
- text-decoration: none;
- }
- body{
- background-color: #EEEDED;
- }
- header{
- background-color: #FDC606;
- display: flex;
- line-height: 50px;
- height: 60px;
- padding: 5px 15px;
- justify-content: space-between;
- box-shadow: 0px 0px 4px 0 rgba(0,0,0,.5);
- }
- .logo{
- width: 50px;
- height: 50px;
- border-radius: 5px;
- }
- header a{
- color: #000;
- text-decoration: none;
- font-weight: 500;
- }
- .nav{
- width: 1200px;
- max-width: 80%;
- /* text-align: center; */
- }
- .nav a{
- line-height: 40px;
- height: 40px;
- margin: 0 20px;
- padding: 0 20px;
- display: inline-block;
- border-radius: 30px 15px 30px 15px;
- }
- /* .nav a:hover{
- color: #fff;
- transition: all 0.5s;
- } */
- .nav .act{
- background-color: #000;
- color: #fff;
- transform: skew(-10deg);
- }
- .login img{
- border-radius: 50%;
- position: relative;
- top: 10px;
- }
- .content{
- width: 1200px;
- max-width: 100%;
- margin: 20px auto;
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- font-size: 14px;
- }
- .left{
- width: 70%;
- }
- .right{
- width: 28%;
- }
- .banner{
- height: 150px;
- background-color: #000;
- text-align: center;
- color: #fff;
- line-height: 150px;
- }
- .part{
- background-color: #fff;
- padding: 15px;
- box-shadow: 0px 0px 4px 0 rgba(0,0,0,.1);
- margin: 15px 0;
- }
- .title{
- font-size: 22px;
- font-weight: 500;
- text-align: center;
- margin-bottom: 20px;
- position: relative;
- }
- .title span{
- position: relative;
- z-index: 9;
- }
- .title::before{
- content: '';
- position: absolute;
- width: 0;
- height: 0;
- border-left: 25px solid transparent;
- border-right: 130px solid transparent;
- border-bottom: 20px solid #FDC606;
- left: 0;
- right: 0;
- margin: auto;
- top: 35%;
- z-index: 1;
- transform: rotate(-10deg);
- }
- .list{
- display: flex;
- flex-wrap: wrap;
- }
- .list li{
- width: 48%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- line-height: 50px;
- }
- .list li a{
- color: #333;
- text-decoration: none;
- font-weight: 500;
- }
- .list li a:hover{
- color: #0760C7;
- }
- .more{
- display: block;
- background-color: #000;
- color: #fff;
- padding: 10px 0;
- text-align: center;
- margin: 15px auto;
- border-radius: 3px;
- width: 200px;
- }
- .sec_title{
- display: flex;
- justify-content: space-between;
- align-items: flex-end;
- margin-bottom: 20px;
- }
- .sec_title span{
- font-size: 16px;
- border-bottom: 4px solid #FDC606;
- }
- .sec_title a{
- font-size: 13px;
- color: #0760C7;
- font-weight: 600;
- position: relative;
- top: -4px;
- }
- .list_100 li{
- width: 100%;
- display: flex;
- line-height: 40px;
- justify-content: space-between;
- }
- .list_100 li span{
- color: #999;
- font-size: 13px;
- }
- .form{
- text-align: center;
- }
- .form input,.form textarea{
- width: 100%;
- height: 40px;
- border: 1px solid #ccc;
- border-radius: 3px;
- padding: 0 10px;
- margin-bottom: 15px;
- outline: none;
- }
- .form textarea{
- height: 200px;
- }
- .form button{
- width: 150px;
- height: 40px;
- border: none;
- background-color: #000;
- color: #fff;
- font-weight: 600;
- border-radius: 3px;
- outline: none;
- }
- .form button:hover{
- background-color: #333;
- cursor: pointer;
- transition: .3s;
- }
- input:focus{
- border:2px solid #0760C7;
- }
- .page{
- text-align: center;
- padding: 10px 0;
- }
- .page button{
- background: none;
- border: 1px solid #ccc;
- border-radius: 3px;
- padding: 5px 7px;
- margin: 0 20px;
- font-size: 13px;
- }
- .page button:hover{
- color: #fff;
- background-color: #0760C7;
- transition: .5s;
- border-color: #0760C7;
- cursor: pointer;
- }
- .page b{
- color: #0760C7;
- }
- .navtation{
- margin: 20px 0 0;
- width: 100%;
- }
- .navtation a{
- color: #0760C7;
- }
- footer{
- height: 200px;
- background-color: #000;
- }
- @media screen and (max-width: 768px){
- .content{
- padding: 0 15px;
- }
- .left,.right{
- width: 100% !important;
- margin-bottom: 10px;
- }
- .nav{
- display: none;
- }
- }
|