12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- body, html {
- margin: 0;
- width: 100%;
- height: 100%;
- padding: 0;
- }
- .wrap {
- width: 100%;
- height: 100%;
- }
- .wrap .logo {
- display: inline-block;
- width: 100%;
- text-align: center;
- }
- .wrap .content{
- padding: 1rem;
- }
- .wrap .logo > img {
- width: 20%;
- padding: 1.5rem 0 1.2rem;
- }
- .wrap .content > p {
- width: 100%;
- font-size: 1rem;
- letter-spacing: 3px;
- font-family: "微软雅黑";
- font-weight: bold;
- color: #666;
- text-align: justify;
- text-indent: 24px;
- line-height: 1.5rem;
- margin: 0;
- }
- .wrap .name{
- text-align: center;
- margin-top: 3rem;
- }
- .wrap .name > span {
- color: #00B7FF;
- font-family: "微软雅黑";
- font-size:1rem;
- font-weight: bold;
- line-height: 2rem;
- }
- .wrap .address{
- text-align: center;
- margin-bottom: 5rem;
- }
- .wrap .address span{
- font-family: "微软雅黑";
- color: #8489A3;
- font-size: .8rem;
- font-weight: bold;
- }
- .wrap .bottom{
- display: inline-block;
- bottom: 0;
- padding-right: 1rem;
- }
- .wrap .bottom > img {
- width: 35%;
- float: right;
- }
|