123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- .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%;
- transform: translateY(-50%);
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- width: 360px;
- height: 340px;
- border: 3px solid #e8e8e8;
- 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%;
- 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;
- transition: all 0.4s;
- }
- .main .brand .content .link:hover {
- background: #eee;
- }
|