12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- .main .brand {
- margin-top: 60px;
- }
- .main .brand:first-child {
- margin-top: 120px;
- }
- .main .brand .container {
- position: relative;
- }
- .main .brand .cover {
- width: 880px;
- height: 420px;
- background: pink;
- }
- .main .brand .content {
- position: absolute;
- right: 0;
- top: 50%;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- width: 360px;
- height: 340px;
- border: 3px solid #e8e8e8;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- background: #fff;
- }
- .main .brand .content .brand-logo {
- position: relative;
- width: 174px;
- height: 106px;
- background: skyblue;
- overflow: hidden;
- }
- .main .brand .content .brand-logo img {
- display: block;
- position: absolute;
- left: 50%;
- top: 50%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- }
- .main .brand .content .name {
- font-size: 16px;
- color: #505050;
- margin: 24px 0 32px;
- }
- .main .brand .content .link {
- width: 160px;
- height: 48px;
- background: #f7f7f7;
- opacity: 1;
- font-size: 16px;
- color: #505050;
- text-align: center;
- line-height: 48px;
- cursor: pointer;
- -webkit-transition: all 0.4s;
- transition: all 0.4s;
- }
- .main .brand .content .link:hover {
- background: #eee;
- }
|