| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- @font-face {
- font-family: 'ENFA';
- src: url('./font/enA.ttf') format('truetype');
- unicode-range: U+0000-007F;
- }
- @font-face {
- font-family: 'ENFB';
- src: url('./font/enB.ttf') format('truetype');
- unicode-range: U+0000-007F;
- }
- @font-face {
- font-family: 'ZHFA';
- src:url('./font/zhA_main.woff2') format('woff2');
- }
- .header {
- display: flex;
- align-items: center;
- background-color: #f9faff;
- overflow: hidden;
- margin: 0;
- padding: 0 20px;
- }
- .header h1 {
- float: left;
- color: #000000;
- text-align: center;
- font-size: 24px;
- margin-right: 20px;
- font-family: "ZHFA", sans-serif;
- }
- .header a {
- float: left;
- color: #333;
- text-align: center;
- padding: 14px 16px;
- text-decoration: none;
- font-size: 17px;
- }
- .main{
- background-color: #f9faff;
- padding: 100px 90px;
- }
- .main .text {
- font-size: 78px;
- }
- .main .text .textA {
- color: #494949;
- font-family: "ZHFA", sans-serif;
- }
- .main .text .textB {
- color: #587efd;
- font-family: "ENFA", sans-serif;
- }
- .main button{
- vertical-align: middle;
- width: 130px;
- height: 45px;
- padding: 15px 20px;
- border: none;
- border-radius: 5px;
- cursor: pointer;
- font-size: 18px;
- text-decoration: none;
- display: inline-block;
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
- line-height: 15px;
- text-align: center;
- }
- .main .buttonA{
- background-color: #007bff;
- color: white;
- margin-right: 15px;
- }
- .main .buttonB{
- background-color: #ffffff;
- color: #000000;
- }
- .background{
- background-color: #ffffff;
- display: flex;
- justify-content: center;
- margin: 25px 0;
- }
- .projects{
- display: block;
- justify-content: flex-start;
- }
- .projects h2{
- font-size: 34px;
- color: #0f9050;
- font-family: "ZHFA", sans-serif;
- }
- .blocks{
- display: flex;
- gap: 30px;
- justify-content: center;
- margin-bottom: 55px;
- }
- .blocks .inner{
- box-sizing: border-box;
- border: 1px solid #b1b1b1;
- border-radius: 10px;
- width: 400px;
- padding: 20px;
- transition: background-color 0.7s ease;
- }
- .blocks .inner img,
- .blocks .inner h1 {
- display: inline-block;
- font-family: "ENFB", sans-serif;
- }
- .blocks .inner:hover {
- background-color: #eaeefd;
- transition: background-color 0.7s ease;
- }
- .info {
- background-color: #f9faff;
- padding: 25px 90px;
- padding-bottom: 15px;
- font-size: 20px;
- /*font-family: "ZHFB", sans-serif;*/
- }
- .info .quote{
- margin: 20px 0;
- font-size: 26px;
- font-family: "ZHFA", sans-serif;
- }
- .news{
- width: 1240px;
- justify-content: flex-start;
- margin-bottom: 40px;
- font-size: larger;
- }
- .news h2{
- font-size: 34px;
- color: #d58113;
- font-family: "ZHFA", sans-serif;
- }
- .footer {
- padding: 25px 16px;
- background-color: #001c37;
- text-align: center;
- font-size: 14px;
- color: #ffffff;
- overflow: hidden;
- }
- .footer a {
- color: #ffffff;
- text-decoration: none;
- }
- .page404{
- background-color: #f9faff;
- overflow: hidden;
- padding: 200px 0;
- }
- .page404 h1{
- text-align: center;
- }
- .page404 .text{
- display: flex;
- justify-content: center;
- }
- .page404 .text button{
- vertical-align: middle;
- width: 200px;
- height: 40px;
- padding: 15px 20px;
- border: none;
- border-radius: 5px;
- cursor: pointer;
- font-size: 16px;
- text-decoration: none;
- display: inline-block;
- line-height: 15px;
- text-align: center;
- background-color: #007bff;
- color: white;
- margin-right: 15px;
- }
|