123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- html, body {
- width: 100%;
- height: 100%;
- background-color: #f6f7fb;
- }
- .applicationMarket {
- height: 100%;
- .applicationMarket-title {
- width: 100%;
- padding: 80px 0 60px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- .ourServices {
- width: 160px;
- text-align: center;
- font-size: 14px;
- padding: 8px 0;
- color: #63aefb;
- border: 1px solid #63aefb;
- border-radius: 6px;
- background-color: rgba(99, 174, 251, 0.2);
- margin: auto;
- margin-bottom: 20px;
- }
- .applicationEncyclopedia {
- text-align: center;
- font-size: 28px;
- font-weight: bold;
- color: #000000;
- margin-bottom: 0px;
- }
- }
- .topicContent {
- width: 70%;
- margin: auto;
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- .bigCircle {
- width: 49.3%;
- background-color: #fff;
- border-radius: 6px;
- height: 320px;
- display: flex;
- padding: 25px;
- flex-direction: row;
- box-sizing: border-box;
- cursor: pointer;
- border: 1px solid #fff;
- .bigCircle-icon {
- width: 20%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- padding-right: 25px;
- }
-
- .textTitle {
- width: 100%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- .textTitle-title {
- font-size: 24px;
- color: #000000;
- font-weight: bold;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .textTitle-title-icon {
- width: 30px;
- height: 30px;
- border-radius: 50%;
- background-color: rgba(99, 174, 251, 0.2);
- display: flex;
- justify-content: center;
- align-items: center;
- img {
- width: 50%;
- height: 50%;
- }
- }
- }
- .textTitle-text {
- font-size: 16px;
- color: #999999;
- margin-top: 15px;
- line-height: 1.4;
- }
- }
- &:hover {
- border: 1px solid #86bffb;
- background-color: rgba(99, 174, 251, 0.2);
- .textTitle-title-icon {
- background-color: #fff !important;
- }
- }
- &:nth-child(0) {
- margin-bottom: 20px;
- }
- &:nth-child(1) {
- margin-bottom: 20px;
- }
- }
- }
- img {
- width: 100%;
- }
- }
- // 媒体查询
- @media only screen and (max-width: 768px) {
- .applicationMarket {
- .topicContent {
- display: flex;
- flex-direction: column;
- .bigCircle {
- width: 100%;
- }
- }
- }
- }
|