Commit 0e62f79cbd545811d54a36333c558fd19333a589
1 parent
103c1f4e
修改了style.css、_index.scss与_public.scss,主要是index.html的页面设置
Showing
3 changed files
with
1293 additions
and
74 deletions
| ... | ... | @@ -9,6 +9,100 @@ |
| 9 | 9 | padding-bottom: 10px; |
| 10 | 10 | } |
| 11 | 11 | |
| 12 | +.shop-box { | |
| 13 | + margin: 40px 10%; | |
| 14 | + width: 80%; | |
| 15 | +} | |
| 16 | +.shop-box .title { | |
| 17 | + font-size: 21px; | |
| 18 | + font-weight: bold; | |
| 19 | + margin-top: 20px; | |
| 20 | +} | |
| 21 | +.shop-box .point-box { | |
| 22 | + padding-bottom: 10px; | |
| 23 | + width: 100%; | |
| 24 | + float: left; | |
| 25 | + margin-top: 20px; | |
| 26 | +} | |
| 27 | +.shop-box .point-box .circle-img { | |
| 28 | + position: absolute; | |
| 29 | + display: inline-block; | |
| 30 | + right: 70px; | |
| 31 | + width: 60px; | |
| 32 | + height: 60px; | |
| 33 | + border-radius: 50%; | |
| 34 | + margin: 0; | |
| 35 | + background-color: white; | |
| 36 | +} | |
| 37 | +.shop-box .point-box .circle-img i { | |
| 38 | + font-size: 30px; | |
| 39 | + position: absolute; | |
| 40 | + left: 15px; | |
| 41 | + padding: 0; | |
| 42 | + margin: 0; | |
| 43 | +} | |
| 44 | +.shop-box .point-box p { | |
| 45 | + display: inline-block; | |
| 46 | +} | |
| 47 | +.shop-box ul.options { | |
| 48 | + width: 100%; | |
| 49 | + padding: 0; | |
| 50 | + display: inline-block; | |
| 51 | + margin: 0; | |
| 52 | +} | |
| 53 | +.shop-box ul.options li { | |
| 54 | + display: block; | |
| 55 | + height: 50px; | |
| 56 | + list-style-type: none; | |
| 57 | + line-height: 50px; | |
| 58 | + position: relative; | |
| 59 | + padding-left: 40px; | |
| 60 | +} | |
| 61 | +.shop-box ul.options li.active:after { | |
| 62 | + content: ''; | |
| 63 | + position: absolute; | |
| 64 | + border-radius: 80%; | |
| 65 | + z-index: 99; | |
| 66 | + width: 10px; | |
| 67 | + height: 10px; | |
| 68 | + top: 20px; | |
| 69 | + left: 20px; | |
| 70 | +} | |
| 71 | +.shop-box ul.options li:before { | |
| 72 | + content: ''; | |
| 73 | + position: absolute; | |
| 74 | + top: 0; | |
| 75 | + left: 0; | |
| 76 | + right: 0; | |
| 77 | + height: 1px; | |
| 78 | + width: 100%; | |
| 79 | +} | |
| 80 | +.shop-box .bottom-box { | |
| 81 | + width: 100%; | |
| 82 | + position: relative; | |
| 83 | +} | |
| 84 | +.shop-box .bottom-box:before { | |
| 85 | + content: ''; | |
| 86 | + position: absolute; | |
| 87 | + top: 0; | |
| 88 | + left: 0; | |
| 89 | + right: 0; | |
| 90 | + width: 100%; | |
| 91 | + height: 0.5px; | |
| 92 | +} | |
| 93 | +.shop-box .bottom-box .bottom-body { | |
| 94 | + margin: 20px 0; | |
| 95 | + position: relative; | |
| 96 | + width: 100%; | |
| 97 | +} | |
| 98 | +.shop-box .bottom-box .bottom-body button { | |
| 99 | + width: 100%; | |
| 100 | + height: 50px; | |
| 101 | + margin: 15px 0 0; | |
| 102 | + border: none; | |
| 103 | + border-radius: 3px; | |
| 104 | +} | |
| 105 | + | |
| 12 | 106 | .font-bold { |
| 13 | 107 | font-weight: bold; |
| 14 | 108 | } |
| ... | ... | @@ -459,6 +553,100 @@ |
| 459 | 553 | padding-bottom: 10px; |
| 460 | 554 | } |
| 461 | 555 | |
| 556 | +.shop-box { | |
| 557 | + margin: 40px 10%; | |
| 558 | + width: 80%; | |
| 559 | +} | |
| 560 | +.shop-box .title { | |
| 561 | + font-size: 21px; | |
| 562 | + font-weight: bold; | |
| 563 | + margin-top: 20px; | |
| 564 | +} | |
| 565 | +.shop-box .point-box { | |
| 566 | + padding-bottom: 10px; | |
| 567 | + width: 100%; | |
| 568 | + float: left; | |
| 569 | + margin-top: 20px; | |
| 570 | +} | |
| 571 | +.shop-box .point-box .circle-img { | |
| 572 | + position: absolute; | |
| 573 | + display: inline-block; | |
| 574 | + right: 70px; | |
| 575 | + width: 60px; | |
| 576 | + height: 60px; | |
| 577 | + border-radius: 50%; | |
| 578 | + margin: 0; | |
| 579 | + background-color: white; | |
| 580 | +} | |
| 581 | +.shop-box .point-box .circle-img i { | |
| 582 | + font-size: 30px; | |
| 583 | + position: absolute; | |
| 584 | + left: 15px; | |
| 585 | + padding: 0; | |
| 586 | + margin: 0; | |
| 587 | +} | |
| 588 | +.shop-box .point-box p { | |
| 589 | + display: inline-block; | |
| 590 | +} | |
| 591 | +.shop-box ul.options { | |
| 592 | + width: 100%; | |
| 593 | + padding: 0; | |
| 594 | + display: inline-block; | |
| 595 | + margin: 0; | |
| 596 | +} | |
| 597 | +.shop-box ul.options li { | |
| 598 | + display: block; | |
| 599 | + height: 50px; | |
| 600 | + list-style-type: none; | |
| 601 | + line-height: 50px; | |
| 602 | + position: relative; | |
| 603 | + padding-left: 40px; | |
| 604 | +} | |
| 605 | +.shop-box ul.options li.active:after { | |
| 606 | + content: ''; | |
| 607 | + position: absolute; | |
| 608 | + border-radius: 80%; | |
| 609 | + z-index: 99; | |
| 610 | + width: 10px; | |
| 611 | + height: 10px; | |
| 612 | + top: 20px; | |
| 613 | + left: 20px; | |
| 614 | +} | |
| 615 | +.shop-box ul.options li:before { | |
| 616 | + content: ''; | |
| 617 | + position: absolute; | |
| 618 | + top: 0; | |
| 619 | + left: 0; | |
| 620 | + right: 0; | |
| 621 | + height: 1px; | |
| 622 | + width: 100%; | |
| 623 | +} | |
| 624 | +.shop-box .bottom-box { | |
| 625 | + width: 100%; | |
| 626 | + position: relative; | |
| 627 | +} | |
| 628 | +.shop-box .bottom-box:before { | |
| 629 | + content: ''; | |
| 630 | + position: absolute; | |
| 631 | + top: 0; | |
| 632 | + left: 0; | |
| 633 | + right: 0; | |
| 634 | + width: 100%; | |
| 635 | + height: 0.5px; | |
| 636 | +} | |
| 637 | +.shop-box .bottom-box .bottom-body { | |
| 638 | + margin: 20px 0; | |
| 639 | + position: relative; | |
| 640 | + width: 100%; | |
| 641 | +} | |
| 642 | +.shop-box .bottom-box .bottom-body button { | |
| 643 | + width: 100%; | |
| 644 | + height: 50px; | |
| 645 | + margin: 15px 0 0; | |
| 646 | + border: none; | |
| 647 | + border-radius: 3px; | |
| 648 | +} | |
| 649 | + | |
| 462 | 650 | .font-bold { |
| 463 | 651 | font-weight: bold; |
| 464 | 652 | } |
| ... | ... | @@ -859,6 +1047,100 @@ |
| 859 | 1047 | padding-bottom: 10px; |
| 860 | 1048 | } |
| 861 | 1049 | |
| 1050 | +.shop-box { | |
| 1051 | + margin: 40px 10%; | |
| 1052 | + width: 80%; | |
| 1053 | +} | |
| 1054 | +.shop-box .title { | |
| 1055 | + font-size: 21px; | |
| 1056 | + font-weight: bold; | |
| 1057 | + margin-top: 20px; | |
| 1058 | +} | |
| 1059 | +.shop-box .point-box { | |
| 1060 | + padding-bottom: 10px; | |
| 1061 | + width: 100%; | |
| 1062 | + float: left; | |
| 1063 | + margin-top: 20px; | |
| 1064 | +} | |
| 1065 | +.shop-box .point-box .circle-img { | |
| 1066 | + position: absolute; | |
| 1067 | + display: inline-block; | |
| 1068 | + right: 70px; | |
| 1069 | + width: 60px; | |
| 1070 | + height: 60px; | |
| 1071 | + border-radius: 50%; | |
| 1072 | + margin: 0; | |
| 1073 | + background-color: white; | |
| 1074 | +} | |
| 1075 | +.shop-box .point-box .circle-img i { | |
| 1076 | + font-size: 30px; | |
| 1077 | + position: absolute; | |
| 1078 | + left: 15px; | |
| 1079 | + padding: 0; | |
| 1080 | + margin: 0; | |
| 1081 | +} | |
| 1082 | +.shop-box .point-box p { | |
| 1083 | + display: inline-block; | |
| 1084 | +} | |
| 1085 | +.shop-box ul.options { | |
| 1086 | + width: 100%; | |
| 1087 | + padding: 0; | |
| 1088 | + display: inline-block; | |
| 1089 | + margin: 0; | |
| 1090 | +} | |
| 1091 | +.shop-box ul.options li { | |
| 1092 | + display: block; | |
| 1093 | + height: 50px; | |
| 1094 | + list-style-type: none; | |
| 1095 | + line-height: 50px; | |
| 1096 | + position: relative; | |
| 1097 | + padding-left: 40px; | |
| 1098 | +} | |
| 1099 | +.shop-box ul.options li.active:after { | |
| 1100 | + content: ''; | |
| 1101 | + position: absolute; | |
| 1102 | + border-radius: 80%; | |
| 1103 | + z-index: 99; | |
| 1104 | + width: 10px; | |
| 1105 | + height: 10px; | |
| 1106 | + top: 20px; | |
| 1107 | + left: 20px; | |
| 1108 | +} | |
| 1109 | +.shop-box ul.options li:before { | |
| 1110 | + content: ''; | |
| 1111 | + position: absolute; | |
| 1112 | + top: 0; | |
| 1113 | + left: 0; | |
| 1114 | + right: 0; | |
| 1115 | + height: 1px; | |
| 1116 | + width: 100%; | |
| 1117 | +} | |
| 1118 | +.shop-box .bottom-box { | |
| 1119 | + width: 100%; | |
| 1120 | + position: relative; | |
| 1121 | +} | |
| 1122 | +.shop-box .bottom-box:before { | |
| 1123 | + content: ''; | |
| 1124 | + position: absolute; | |
| 1125 | + top: 0; | |
| 1126 | + left: 0; | |
| 1127 | + right: 0; | |
| 1128 | + width: 100%; | |
| 1129 | + height: 0.5px; | |
| 1130 | +} | |
| 1131 | +.shop-box .bottom-box .bottom-body { | |
| 1132 | + margin: 20px 0; | |
| 1133 | + position: relative; | |
| 1134 | + width: 100%; | |
| 1135 | +} | |
| 1136 | +.shop-box .bottom-box .bottom-body button { | |
| 1137 | + width: 100%; | |
| 1138 | + height: 50px; | |
| 1139 | + margin: 15px 0 0; | |
| 1140 | + border: none; | |
| 1141 | + border-radius: 3px; | |
| 1142 | +} | |
| 1143 | + | |
| 862 | 1144 | .font-bold { |
| 863 | 1145 | font-weight: bold; |
| 864 | 1146 | } |
| ... | ... | @@ -1319,6 +1601,100 @@ |
| 1319 | 1601 | padding-bottom: 10px; |
| 1320 | 1602 | } |
| 1321 | 1603 | |
| 1604 | +.shop-box { | |
| 1605 | + margin: 40px 10%; | |
| 1606 | + width: 80%; | |
| 1607 | +} | |
| 1608 | +.shop-box .title { | |
| 1609 | + font-size: 21px; | |
| 1610 | + font-weight: bold; | |
| 1611 | + margin-top: 20px; | |
| 1612 | +} | |
| 1613 | +.shop-box .point-box { | |
| 1614 | + padding-bottom: 10px; | |
| 1615 | + width: 100%; | |
| 1616 | + float: left; | |
| 1617 | + margin-top: 20px; | |
| 1618 | +} | |
| 1619 | +.shop-box .point-box .circle-img { | |
| 1620 | + position: absolute; | |
| 1621 | + display: inline-block; | |
| 1622 | + right: 70px; | |
| 1623 | + width: 60px; | |
| 1624 | + height: 60px; | |
| 1625 | + border-radius: 50%; | |
| 1626 | + margin: 0; | |
| 1627 | + background-color: white; | |
| 1628 | +} | |
| 1629 | +.shop-box .point-box .circle-img i { | |
| 1630 | + font-size: 30px; | |
| 1631 | + position: absolute; | |
| 1632 | + left: 15px; | |
| 1633 | + padding: 0; | |
| 1634 | + margin: 0; | |
| 1635 | +} | |
| 1636 | +.shop-box .point-box p { | |
| 1637 | + display: inline-block; | |
| 1638 | +} | |
| 1639 | +.shop-box ul.options { | |
| 1640 | + width: 100%; | |
| 1641 | + padding: 0; | |
| 1642 | + display: inline-block; | |
| 1643 | + margin: 0; | |
| 1644 | +} | |
| 1645 | +.shop-box ul.options li { | |
| 1646 | + display: block; | |
| 1647 | + height: 50px; | |
| 1648 | + list-style-type: none; | |
| 1649 | + line-height: 50px; | |
| 1650 | + position: relative; | |
| 1651 | + padding-left: 40px; | |
| 1652 | +} | |
| 1653 | +.shop-box ul.options li.active:after { | |
| 1654 | + content: ''; | |
| 1655 | + position: absolute; | |
| 1656 | + border-radius: 80%; | |
| 1657 | + z-index: 99; | |
| 1658 | + width: 10px; | |
| 1659 | + height: 10px; | |
| 1660 | + top: 20px; | |
| 1661 | + left: 20px; | |
| 1662 | +} | |
| 1663 | +.shop-box ul.options li:before { | |
| 1664 | + content: ''; | |
| 1665 | + position: absolute; | |
| 1666 | + top: 0; | |
| 1667 | + left: 0; | |
| 1668 | + right: 0; | |
| 1669 | + height: 1px; | |
| 1670 | + width: 100%; | |
| 1671 | +} | |
| 1672 | +.shop-box .bottom-box { | |
| 1673 | + width: 100%; | |
| 1674 | + position: relative; | |
| 1675 | +} | |
| 1676 | +.shop-box .bottom-box:before { | |
| 1677 | + content: ''; | |
| 1678 | + position: absolute; | |
| 1679 | + top: 0; | |
| 1680 | + left: 0; | |
| 1681 | + right: 0; | |
| 1682 | + width: 100%; | |
| 1683 | + height: 0.5px; | |
| 1684 | +} | |
| 1685 | +.shop-box .bottom-box .bottom-body { | |
| 1686 | + margin: 20px 0; | |
| 1687 | + position: relative; | |
| 1688 | + width: 100%; | |
| 1689 | +} | |
| 1690 | +.shop-box .bottom-box .bottom-body button { | |
| 1691 | + width: 100%; | |
| 1692 | + height: 50px; | |
| 1693 | + margin: 15px 0 0; | |
| 1694 | + border: none; | |
| 1695 | + border-radius: 3px; | |
| 1696 | +} | |
| 1697 | + | |
| 1322 | 1698 | .font-bold { |
| 1323 | 1699 | font-weight: bold; |
| 1324 | 1700 | } |
| ... | ... | @@ -1711,6 +2087,100 @@ |
| 1711 | 2087 | padding-bottom: 10px; |
| 1712 | 2088 | } |
| 1713 | 2089 | |
| 2090 | +.shop-box { | |
| 2091 | + margin: 40px 10%; | |
| 2092 | + width: 80%; | |
| 2093 | +} | |
| 2094 | +.shop-box .title { | |
| 2095 | + font-size: 21px; | |
| 2096 | + font-weight: bold; | |
| 2097 | + margin-top: 20px; | |
| 2098 | +} | |
| 2099 | +.shop-box .point-box { | |
| 2100 | + padding-bottom: 10px; | |
| 2101 | + width: 100%; | |
| 2102 | + float: left; | |
| 2103 | + margin-top: 20px; | |
| 2104 | +} | |
| 2105 | +.shop-box .point-box .circle-img { | |
| 2106 | + position: absolute; | |
| 2107 | + display: inline-block; | |
| 2108 | + right: 70px; | |
| 2109 | + width: 60px; | |
| 2110 | + height: 60px; | |
| 2111 | + border-radius: 50%; | |
| 2112 | + margin: 0; | |
| 2113 | + background-color: white; | |
| 2114 | +} | |
| 2115 | +.shop-box .point-box .circle-img i { | |
| 2116 | + font-size: 30px; | |
| 2117 | + position: absolute; | |
| 2118 | + left: 15px; | |
| 2119 | + padding: 0; | |
| 2120 | + margin: 0; | |
| 2121 | +} | |
| 2122 | +.shop-box .point-box p { | |
| 2123 | + display: inline-block; | |
| 2124 | +} | |
| 2125 | +.shop-box ul.options { | |
| 2126 | + width: 100%; | |
| 2127 | + padding: 0; | |
| 2128 | + display: inline-block; | |
| 2129 | + margin: 0; | |
| 2130 | +} | |
| 2131 | +.shop-box ul.options li { | |
| 2132 | + display: block; | |
| 2133 | + height: 50px; | |
| 2134 | + list-style-type: none; | |
| 2135 | + line-height: 50px; | |
| 2136 | + position: relative; | |
| 2137 | + padding-left: 40px; | |
| 2138 | +} | |
| 2139 | +.shop-box ul.options li.active:after { | |
| 2140 | + content: ''; | |
| 2141 | + position: absolute; | |
| 2142 | + border-radius: 80%; | |
| 2143 | + z-index: 99; | |
| 2144 | + width: 10px; | |
| 2145 | + height: 10px; | |
| 2146 | + top: 20px; | |
| 2147 | + left: 20px; | |
| 2148 | +} | |
| 2149 | +.shop-box ul.options li:before { | |
| 2150 | + content: ''; | |
| 2151 | + position: absolute; | |
| 2152 | + top: 0; | |
| 2153 | + left: 0; | |
| 2154 | + right: 0; | |
| 2155 | + height: 1px; | |
| 2156 | + width: 100%; | |
| 2157 | +} | |
| 2158 | +.shop-box .bottom-box { | |
| 2159 | + width: 100%; | |
| 2160 | + position: relative; | |
| 2161 | +} | |
| 2162 | +.shop-box .bottom-box:before { | |
| 2163 | + content: ''; | |
| 2164 | + position: absolute; | |
| 2165 | + top: 0; | |
| 2166 | + left: 0; | |
| 2167 | + right: 0; | |
| 2168 | + width: 100%; | |
| 2169 | + height: 0.5px; | |
| 2170 | +} | |
| 2171 | +.shop-box .bottom-box .bottom-body { | |
| 2172 | + margin: 20px 0; | |
| 2173 | + position: relative; | |
| 2174 | + width: 100%; | |
| 2175 | +} | |
| 2176 | +.shop-box .bottom-box .bottom-body button { | |
| 2177 | + width: 100%; | |
| 2178 | + height: 50px; | |
| 2179 | + margin: 15px 0 0; | |
| 2180 | + border: none; | |
| 2181 | + border-radius: 3px; | |
| 2182 | +} | |
| 2183 | + | |
| 1714 | 2184 | .font-bold { |
| 1715 | 2185 | font-weight: bold; |
| 1716 | 2186 | } |
| ... | ... | @@ -2071,13 +2541,14 @@ |
| 2071 | 2541 | color: #7c7a7a; |
| 2072 | 2542 | } |
| 2073 | 2543 | } |
| 2544 | +.page { | |
| 2545 | + background-attachment: fixed; | |
| 2546 | +} | |
| 2547 | + | |
| 2074 | 2548 | .index-content { |
| 2075 | 2549 | width: 100%; |
| 2076 | 2550 | float: left; |
| 2077 | 2551 | } |
| 2078 | -.index-content .index-content-mar { | |
| 2079 | - padding: 70px 15%; | |
| 2080 | -} | |
| 2081 | 2552 | .index-content h3 { |
| 2082 | 2553 | letter-spacing: 1px; |
| 2083 | 2554 | } |
| ... | ... | @@ -2200,79 +2671,371 @@ |
| 2200 | 2671 | } |
| 2201 | 2672 | .index-content .index-content-2 { |
| 2202 | 2673 | width: 100%; |
| 2674 | + background-repeat: no-repeat; | |
| 2675 | + background-attachment: fixed; | |
| 2203 | 2676 | } |
| 2204 | 2677 | .index-content .index-content-2 .content-2-1 { |
| 2205 | 2678 | background-color: #fffbfb; |
| 2206 | 2679 | border: 0.5px solid #ffeeee; |
| 2207 | 2680 | } |
| 2208 | -.index-content .index-content-2 .content-2-1 .title { | |
| 2209 | - font-size: 21px; | |
| 2210 | - font-weight: bold; | |
| 2211 | - margin-top: 20px; | |
| 2681 | +.index-content .index-content-2 .content-2-1 a { | |
| 2682 | + color: orange; | |
| 2683 | +} | |
| 2684 | +.index-content .index-content-2 .content-2-1 .point-box .circle-img { | |
| 2685 | + border: 1px solid orange; | |
| 2686 | +} | |
| 2687 | +.index-content .index-content-2 .content-2-1 .point-box .circle-img i { | |
| 2688 | + left: 10px; | |
| 2212 | 2689 | } |
| 2213 | -.index-content .index-content-2 .content-2-1 .title a { | |
| 2690 | +.index-content .index-content-2 .content-2-1 ul.options li { | |
| 2691 | + color: rgba(255, 186, 146, 0.5); | |
| 2692 | +} | |
| 2693 | +.index-content .index-content-2 .content-2-1 ul.options li.active:after { | |
| 2694 | + background-color: #ffba92; | |
| 2695 | +} | |
| 2696 | +.index-content .index-content-2 .content-2-1 ul.options li.active { | |
| 2214 | 2697 | color: orange; |
| 2215 | 2698 | } |
| 2216 | -.index-content .index-content-2 .content-2-1 .point-box { | |
| 2217 | - padding-bottom: 20px; | |
| 2218 | - width: 100%; | |
| 2699 | +.index-content .index-content-2 .content-2-1 ul.options li:before { | |
| 2700 | + background-color: #ffdcce; | |
| 2701 | +} | |
| 2702 | +.index-content .index-content-2 .content-2-1 .bottom-box:before { | |
| 2703 | + background-color: #ffdcce; | |
| 2704 | +} | |
| 2705 | +.index-content .index-content-2 .content-2-1 .bottom-box a { | |
| 2706 | + color: rgba(255, 186, 146, 0.5); | |
| 2707 | +} | |
| 2708 | +.index-content .index-content-2 .content-2-1 .bottom-box button { | |
| 2709 | + background-color: orange; | |
| 2710 | + color: white; | |
| 2711 | +} | |
| 2712 | +.index-content .index-content-2 .content-2-2 { | |
| 2713 | + background-color: #f2f9ff; | |
| 2714 | + border: 0.5px solid #c5e4ff a; | |
| 2715 | + border-color: #60c2ff; | |
| 2716 | +} | |
| 2717 | +.index-content .index-content-2 .content-2-2 .point-box .circle-img { | |
| 2718 | + border: 1px solid #60c2ff; | |
| 2719 | +} | |
| 2720 | +.index-content .index-content-2 .content-2-2 .point-box .circle-img i { | |
| 2721 | + left: 10px; | |
| 2722 | + color: #60c2ff; | |
| 2723 | +} | |
| 2724 | +.index-content .index-content-2 .content-2-2 ul.options li { | |
| 2725 | + color: #b5dcf3; | |
| 2726 | +} | |
| 2727 | +.index-content .index-content-2 .content-2-2 ul.options li.active:after { | |
| 2728 | + background-color: #60c2ff; | |
| 2729 | +} | |
| 2730 | +.index-content .index-content-2 .content-2-2 ul.options li.active { | |
| 2731 | + color: #60c2ff; | |
| 2732 | +} | |
| 2733 | +.index-content .index-content-2 .content-2-2 ul.options li:before { | |
| 2734 | + background-color: #b5dcf3; | |
| 2735 | +} | |
| 2736 | +.index-content .index-content-2 .content-2-2 .bottom-box { | |
| 2737 | + background-color: #e3f2ff; | |
| 2738 | +} | |
| 2739 | +.index-content .index-content-2 .content-2-2 .bottom-box:before { | |
| 2740 | + background-color: #b5dcf3; | |
| 2741 | +} | |
| 2742 | +.index-content .index-content-2 .content-2-2 .bottom-box a { | |
| 2743 | + color: #60c2ff; | |
| 2744 | +} | |
| 2745 | +.index-content .index-content-2 .content-2-2 .bottom-box button { | |
| 2746 | + background-color: #60c2ff; | |
| 2747 | + color: white; | |
| 2748 | +} | |
| 2749 | +.index-content .index-content-2 .content-2-3 { | |
| 2750 | + background-color: #fbfffb; | |
| 2751 | + border: 0.5px solid #e9ffe9; | |
| 2752 | +} | |
| 2753 | +.index-content .index-content-2 .content-2-3 a { | |
| 2754 | + color: #77ac77; | |
| 2755 | +} | |
| 2756 | +.index-content .index-content-2 .content-2-3 .point-box .circle-img { | |
| 2757 | + border: 1px solid #77ac77; | |
| 2758 | +} | |
| 2759 | +.index-content .index-content-2 .content-2-3 .point-box .circle-img i { | |
| 2760 | + left: 10px; | |
| 2761 | + color: #77ac77; | |
| 2762 | +} | |
| 2763 | +.index-content .index-content-2 .content-2-3 ul.options li { | |
| 2764 | + color: #d5e7d5; | |
| 2765 | +} | |
| 2766 | +.index-content .index-content-2 .content-2-3 ul.options li.active:after { | |
| 2767 | + background-color: #77ac77; | |
| 2768 | +} | |
| 2769 | +.index-content .index-content-2 .content-2-3 ul.options li.active { | |
| 2770 | + color: #77ac77; | |
| 2771 | +} | |
| 2772 | +.index-content .index-content-2 .content-2-3 ul.options li:before { | |
| 2773 | + background-color: #cfe7cf; | |
| 2774 | +} | |
| 2775 | +.index-content .index-content-2 .content-2-3 .bottom-box { | |
| 2776 | + background-color: #d5e7d5; | |
| 2777 | +} | |
| 2778 | +.index-content .index-content-2 .content-2-3 .bottom-box:before { | |
| 2779 | + background-color: #cfe7cf; | |
| 2780 | +} | |
| 2781 | +.index-content .index-content-2 .content-2-3 .bottom-box a { | |
| 2782 | + color: #77ac77; | |
| 2783 | +} | |
| 2784 | +.index-content .index-content-2 .content-2-3 .bottom-box button { | |
| 2785 | + background-color: #77ac77; | |
| 2786 | + color: white; | |
| 2787 | +} | |
| 2788 | +.index-content .index-content-2 .content-2-4 { | |
| 2789 | + background-color: #fff7fa; | |
| 2790 | + border: 0.5px solid #ffe6ef; | |
| 2791 | +} | |
| 2792 | +.index-content .index-content-2 .content-2-4 a { | |
| 2793 | + color: #cf3266; | |
| 2794 | +} | |
| 2795 | +.index-content .index-content-2 .content-2-4 .point-box .circle-img { | |
| 2796 | + border: 1px solid #cf3266; | |
| 2797 | +} | |
| 2798 | +.index-content .index-content-2 .content-2-4 .point-box .circle-img i { | |
| 2799 | + left: 15px; | |
| 2800 | + color: #cf3266; | |
| 2801 | +} | |
| 2802 | +.index-content .index-content-2 .content-2-4 ul.options li { | |
| 2803 | + color: #ec85a8; | |
| 2804 | +} | |
| 2805 | +.index-content .index-content-2 .content-2-4 ul.options li.active:after { | |
| 2806 | + background-color: #cf3266; | |
| 2807 | +} | |
| 2808 | +.index-content .index-content-2 .content-2-4 ul.options li.active { | |
| 2809 | + color: #cf3266; | |
| 2810 | +} | |
| 2811 | +.index-content .index-content-2 .content-2-4 ul.options li:before { | |
| 2812 | + background-color: #f3d1dc; | |
| 2813 | +} | |
| 2814 | +.index-content .index-content-2 .content-2-4 .bottom-box { | |
| 2815 | + background-color: #f3d1dc; | |
| 2816 | +} | |
| 2817 | +.index-content .index-content-2 .content-2-4 .bottom-box:before { | |
| 2818 | + background-color: #cf3266; | |
| 2819 | +} | |
| 2820 | +.index-content .index-content-2 .content-2-4 .bottom-box a { | |
| 2821 | + color: #cf3266; | |
| 2822 | +} | |
| 2823 | +.index-content .index-content-2 .content-2-4 .bottom-box button { | |
| 2824 | + background-color: #cf3266; | |
| 2825 | + color: white; | |
| 2826 | +} | |
| 2827 | +.index-content .index-content-3 .content-3-1 .content-box { | |
| 2828 | + margin: 80px 0; | |
| 2829 | + border: 1px solid silver; | |
| 2830 | +} | |
| 2831 | +.index-content .index-content-3 .content-3-1 .content-box p { | |
| 2832 | + padding: 25px 20px 10px; | |
| 2833 | + text-align: center; | |
| 2834 | +} | |
| 2835 | +.index-content .index-content-3 .content-3-1 .content-box button { | |
| 2836 | + margin-bottom: 20px; | |
| 2837 | + background-color: #cf3266; | |
| 2838 | + color: white; | |
| 2839 | + border: none; | |
| 2840 | + border-radius: 3px; | |
| 2841 | + width: 100px; | |
| 2842 | + height: 40px; | |
| 2843 | + margin-left: 15px; | |
| 2844 | +} | |
| 2845 | +.index-content .index-content-4 { | |
| 2846 | + background-repeat: no-repeat; | |
| 2847 | + background-attachment: fixed; | |
| 2848 | +} | |
| 2849 | +.index-content .index-content-4 .content-4-1 { | |
| 2850 | + margin: 0 0; | |
| 2851 | + padding: 80px 0; | |
| 2852 | +} | |
| 2853 | +.index-content .index-content-4 .wrapper-3 #wrapper-3-1 .content-4-hover { | |
| 2854 | + width: 300px; | |
| 2855 | + height: 200px; | |
| 2856 | + margin: 0 12%; | |
| 2857 | + border-radius: 5px; | |
| 2858 | +} | |
| 2859 | +.index-content .index-content-4 .wrapper-3 #wrapper-3-1 .slick-dots li { | |
| 2860 | + margin: 0; | |
| 2861 | +} | |
| 2862 | +.index-content .index-content-4 .wrapper-3 #wrapper-3-1 .slick-dots button:before { | |
| 2863 | + font-size: 40px; | |
| 2864 | +} | |
| 2865 | +.index-content .index-content-5 .content-5-1 .pub_title { | |
| 2866 | + margin-bottom: 30px; | |
| 2867 | +} | |
| 2868 | +.index-content .index-content-5 .content-5-1 .pub_title h3 { | |
| 2869 | + font-size: 18px; | |
| 2870 | +} | |
| 2871 | +.index-content .index-content-5 .content-5-1 ul.content-5-icon { | |
| 2872 | + text-align: center; | |
| 2873 | + margin: 0 0 30px; | |
| 2874 | + padding: 0; | |
| 2875 | +} | |
| 2876 | +.index-content .index-content-5 .content-5-1 ul.content-5-icon li { | |
| 2877 | + list-style-type: none; | |
| 2219 | 2878 | float: left; |
| 2879 | + margin: 20px 90px; | |
| 2880 | + width: 170px; | |
| 2881 | + height: 150px; | |
| 2882 | + position: relative; | |
| 2883 | + background-color: rgba(156, 128, 166, 0.06); | |
| 2220 | 2884 | } |
| 2221 | -.index-content .index-content-2 .content-2-1 .point-box .circle-img { | |
| 2222 | - background-color: white; | |
| 2885 | +.index-content .index-content-5 .content-5-1 ul.content-5-icon li img { | |
| 2223 | 2886 | position: absolute; |
| 2224 | - display: inline-block; | |
| 2225 | - right: 30px; | |
| 2226 | - width: 60px; | |
| 2227 | - height: 60px; | |
| 2228 | - border: 0.5px solid orange; | |
| 2229 | - border-radius: 50%; | |
| 2887 | + text-align: center; | |
| 2888 | + top: 55px; | |
| 2889 | + left: 20px; | |
| 2890 | + opacity: 0.5; | |
| 2891 | +} | |
| 2892 | +.index-content .index-content-5 .content-5-1 .content-5-p { | |
| 2893 | + word-spacing: 1px; | |
| 2894 | + color: #7c7a7a; | |
| 2895 | + font-size: 15px; | |
| 2896 | +} | |
| 2897 | +.index-content .index-content-5 .content-5-1 ul.content-5-ul { | |
| 2898 | + padding: 30px 0; | |
| 2230 | 2899 | margin: 0; |
| 2231 | 2900 | } |
| 2232 | -.index-content .index-content-2 .content-2-1 .point-box .circle-img i { | |
| 2233 | - font-size: 30px; | |
| 2234 | - position: absolute; | |
| 2235 | - left: 10px; | |
| 2901 | +.index-content .index-content-5 .content-5-1 ul.content-5-ul li { | |
| 2902 | + list-style-type: none; | |
| 2903 | + padding: 20px 0; | |
| 2904 | + float: left; | |
| 2905 | + position: relative; | |
| 2236 | 2906 | } |
| 2237 | -.index-content .index-content-2 .content-2-1 .point-box p { | |
| 2907 | +.index-content .index-content-5 .content-5-1 ul.content-5-ul li img { | |
| 2908 | + width: 85px; | |
| 2909 | + height: 85px; | |
| 2910 | + border-radius: 50%; | |
| 2911 | + margin: 0 25px 10px 0; | |
| 2912 | + float: left; | |
| 2913 | +} | |
| 2914 | +.index-content .index-content-5 .content-5-1 ul.content-5-ul li span { | |
| 2915 | + font-size: 12px; | |
| 2916 | + color: #b1b1b1; | |
| 2238 | 2917 | display: inline-block; |
| 2918 | + margin-bottom: 10px; | |
| 2239 | 2919 | } |
| 2240 | -.index-content .index-content-2 .content-2-1 ul { | |
| 2241 | - float: left; | |
| 2242 | - width: 100%; | |
| 2243 | - padding: 0; | |
| 2920 | +.index-content .index-content-5 .content-5-1 ul.content-5-ul li .content-5-a a { | |
| 2921 | + color: #7c7a7a; | |
| 2922 | + word-spacing: 1px; | |
| 2244 | 2923 | } |
| 2245 | -.index-content .index-content-2 .content-2-1 ul li { | |
| 2246 | - display: block; | |
| 2247 | - height: 50px; | |
| 2248 | - list-style-type: none; | |
| 2249 | - line-height: 50px; | |
| 2924 | +.index-content .index-content-5 .content-5-1 ul.content-5-ul li:nth-of-type(2)::before, .index-content .index-content-5 .content-5-1 ul.content-5-ul li:nth-of-type(3)::before { | |
| 2925 | + content: ''; | |
| 2926 | + position: absolute; | |
| 2927 | + top: 0; | |
| 2928 | + left: 0; | |
| 2929 | + right: 0; | |
| 2930 | + width: 100%; | |
| 2931 | + height: 1px; | |
| 2932 | + background-color: rgba(231, 231, 231, 0.8); | |
| 2250 | 2933 | } |
| 2251 | 2934 | |
| 2252 | 2935 | @media screen and (min-width: 768px) { |
| 2936 | + .index-page { | |
| 2937 | + background-image: url("../img/band-2.jpg"); | |
| 2938 | + background-attachment: fixed; | |
| 2939 | + } | |
| 2940 | + .index-page .index-content { | |
| 2941 | + background-color: white; | |
| 2942 | + width: 70%; | |
| 2943 | + margin: 30px 15%; | |
| 2944 | + } | |
| 2945 | + | |
| 2253 | 2946 | .index-content .index-top-box { |
| 2254 | 2947 | position: relative; |
| 2255 | 2948 | } |
| 2256 | - .index-content .index-top-box .outside-nav .outside-nav-1 { | |
| 2949 | + .index-content .index-top-box .outside-nav ul.outside-nav-1 { | |
| 2257 | 2950 | display: inline-block; |
| 2258 | 2951 | position: absolute; |
| 2259 | - top: -50px; | |
| 2952 | + bottom: 20px; | |
| 2260 | 2953 | right: 20%; |
| 2261 | - height: 20px; | |
| 2954 | + z-index: 15; | |
| 2262 | 2955 | } |
| 2263 | - .index-content .index-top-box .outside-nav .outside-nav-1 li { | |
| 2956 | + .index-content .index-top-box .outside-nav ul.outside-nav-1 li { | |
| 2264 | 2957 | background-color: #c93939; |
| 2265 | 2958 | height: 20px; |
| 2266 | - height: 20px; | |
| 2959 | + line-height: 20px; | |
| 2267 | 2960 | } |
| 2268 | - .index-content .index-top-box .outside-nav .outside-nav-1 li a { | |
| 2961 | + .index-content .index-top-box .outside-nav ul.outside-nav-1 li a { | |
| 2269 | 2962 | color: beige; |
| 2270 | 2963 | display: inline-block; |
| 2271 | 2964 | border: none; |
| 2965 | + height: 30px; | |
| 2272 | 2966 | } |
| 2273 | - .index-content .index-top-box .outside-nav .outside-nav-1 li a:hover { | |
| 2967 | + .index-content .index-top-box .outside-nav ul.outside-nav-1 li a:hover { | |
| 2274 | 2968 | color: #7c7a7a; |
| 2275 | 2969 | } |
| 2970 | + .index-content .index-slick .wrapper-1 #wrapper-1-1 img { | |
| 2971 | + height: 500px; | |
| 2972 | + } | |
| 2973 | + .index-content .index-slick .wrapper-2 #wrapper-2-1 .slick-slide { | |
| 2974 | + position: relative; | |
| 2975 | + } | |
| 2976 | + .index-content .index-slick .wrapper-2 #wrapper-2-1 .slick-slide::after { | |
| 2977 | + content: ''; | |
| 2978 | + position: absolute; | |
| 2979 | + right: 0; | |
| 2980 | + top: 0; | |
| 2981 | + bottom: 0; | |
| 2982 | + width: 1px; | |
| 2983 | + height: 100%; | |
| 2984 | + background-color: rgba(231, 231, 231, 0.8); | |
| 2985 | + } | |
| 2986 | + .index-content .index-slick .wrapper-2 #wrapper-2-1 .slick-prev { | |
| 2987 | + left: 37%; | |
| 2988 | + } | |
| 2989 | + .index-content .index-slick .wrapper-2 #wrapper-2-1 .slick-next { | |
| 2990 | + right: 35%; | |
| 2991 | + } | |
| 2992 | + .index-content .index-slick .wrapper-2 #wrapper-2-1 .slick-dots button::before { | |
| 2993 | + width: 40px; | |
| 2994 | + height: 40px; | |
| 2995 | + font-size: 40px; | |
| 2996 | + margin: 0; | |
| 2997 | + padding: 0; | |
| 2998 | + } | |
| 2999 | + .index-content .index-content-2 { | |
| 3000 | + padding: 0; | |
| 3001 | + } | |
| 3002 | + .index-content .index-content-2 .shop-box { | |
| 3003 | + width: 88%; | |
| 3004 | + margin: 40px 0 40px 20px; | |
| 3005 | + } | |
| 3006 | + .index-content .index-content-2 .shop-box .bottom-box a { | |
| 3007 | + display: block; | |
| 3008 | + } | |
| 3009 | + .index-content .index-content-2 .shop-box .bottom-box button { | |
| 3010 | + width: 260px; | |
| 3011 | + display: inline-block; | |
| 3012 | + } | |
| 3013 | + .index-content .index-content-4 { | |
| 3014 | + width: 100%; | |
| 3015 | + height: 500px; | |
| 3016 | + } | |
| 3017 | + .index-content .index-content-4 .wrapper-3 #wrapper-3-1 { | |
| 3018 | + padding: 80px 40px 0; | |
| 3019 | + } | |
| 3020 | + .index-content .index-content-4 .wrapper-3 #wrapper-3-1 .content-4-hover { | |
| 3021 | + width: 300px; | |
| 3022 | + height: 200px; | |
| 3023 | + margin: 0; | |
| 3024 | + } | |
| 3025 | + .index-content .index-content-4 .wrapper-3 #wrapper-3-1 .content-4-hover a { | |
| 3026 | + width: 200px; | |
| 3027 | + height: 200px; | |
| 3028 | + } | |
| 3029 | + .index-content .index-content-4 .wrapper-3 #wrapper-3-1 .content-4-hover a:hover { | |
| 3030 | + background-color: white; | |
| 3031 | + opacity: 0.3; | |
| 3032 | + } | |
| 3033 | + .index-content .index-content-4 .wrapper-3 #wrapper-3-1 .slick-arrow { | |
| 3034 | + visibility: hidden; | |
| 3035 | + } | |
| 3036 | + .index-content .index-content-5 .content-5-1 ul.content-5-icon li { | |
| 3037 | + margin: 0 15px 0 0; | |
| 3038 | + } | |
| 2276 | 3039 | } |
| 2277 | 3040 | |
| 2278 | 3041 | /*# sourceMappingURL=style.css.map */ | ... | ... |
| 1 | 1 | @import 'public'; |
| 2 | +.page{ | |
| 3 | + background-attachment: fixed; | |
| 4 | +} | |
| 2 | 5 | .index-content{ |
| 3 | 6 | width: 100%; |
| 4 | 7 | float: left; |
| 5 | - .index-content-mar{ | |
| 6 | - padding: 70px 15%; | |
| 7 | - } | |
| 8 | 8 | h3{ |
| 9 | 9 | letter-spacing: 1px; |
| 10 | 10 | } |
| ... | ... | @@ -133,75 +133,333 @@ |
| 133 | 133 | } |
| 134 | 134 | .index-content-2{ |
| 135 | 135 | width: 100%; |
| 136 | + background-repeat: no-repeat; | |
| 137 | + background-attachment: fixed; | |
| 136 | 138 | .content-2-1{ |
| 137 | 139 | background-color: rgb(255, 251, 251); |
| 138 | 140 | border: 0.5px solid rgb(255, 238, 238); |
| 139 | - .title{ | |
| 140 | - font-size: 21px; | |
| 141 | - font-weight: bold; | |
| 142 | - margin-top: 20px; | |
| 141 | + a{ | |
| 142 | + color: orange; | |
| 143 | + } | |
| 144 | + .point-box{ | |
| 145 | + .circle-img{ | |
| 146 | + border: 1px solid orange; | |
| 147 | + i{ | |
| 148 | + left: 10px; | |
| 149 | + } | |
| 150 | + } | |
| 151 | + } | |
| 152 | + ul.options{ | |
| 153 | + li{ | |
| 154 | + color: $ora_s_color; | |
| 155 | + &.active:after{ | |
| 156 | + background-color: rgb(255,186,146); | |
| 157 | + } | |
| 158 | + &.active{ | |
| 159 | + color: orange; | |
| 160 | + } | |
| 161 | + } | |
| 162 | + li:before{ | |
| 163 | + background-color: rgb(255, 220, 206); | |
| 164 | + } | |
| 165 | + } | |
| 166 | + .bottom-box{ | |
| 167 | + &:before{ | |
| 168 | + background-color: rgb(255, 220, 206); | |
| 169 | + } | |
| 143 | 170 | a{ |
| 144 | - color: orange; | |
| 171 | + color: $ora_s_color; | |
| 172 | + } | |
| 173 | + button{ | |
| 174 | + background-color: orange; | |
| 175 | + color: white; | |
| 145 | 176 | } |
| 146 | 177 | } |
| 178 | + } | |
| 179 | + .content-2-2{ | |
| 180 | + background-color: $blue_bg; | |
| 181 | + border: 0.5px solid $blue_bd | |
| 182 | + a{ | |
| 183 | + color: $blue_d; | |
| 184 | + } | |
| 147 | 185 | .point-box{ |
| 148 | - padding-bottom: 20px; | |
| 149 | - width: 100%; | |
| 150 | - float: left; | |
| 151 | 186 | .circle-img{ |
| 152 | - background-color: white; | |
| 153 | - position: absolute; | |
| 154 | - display: inline-block; | |
| 155 | - right: 30px; | |
| 156 | - width: 60px; | |
| 157 | - height: 60px; | |
| 158 | - border: 0.5px solid orange; | |
| 159 | - border-radius: 50%; | |
| 160 | - margin: 0; | |
| 187 | + border: 1px solid $blue_d; | |
| 161 | 188 | i{ |
| 162 | - font-size: 30px; | |
| 163 | - position: absolute; | |
| 164 | 189 | left: 10px; |
| 190 | + color: $blue_d; | |
| 191 | + } | |
| 192 | + } | |
| 193 | + } | |
| 194 | + ul.options{ | |
| 195 | + li{ | |
| 196 | + color: $blue_s; | |
| 197 | + &.active:after{ | |
| 198 | + background-color: $blue_d; | |
| 199 | + } | |
| 200 | + &.active{ | |
| 201 | + color: $blue_d; | |
| 165 | 202 | } |
| 166 | 203 | } |
| 204 | + li:before{ | |
| 205 | + background-color: $blue_s; | |
| 206 | + } | |
| 207 | + } | |
| 208 | + .bottom-box{ | |
| 209 | + background-color: $blue_line; | |
| 210 | + &:before{ | |
| 211 | + background-color: $blue_s; | |
| 212 | + } | |
| 213 | + a{ | |
| 214 | + color: $blue_d; | |
| 215 | + } | |
| 216 | + button{ | |
| 217 | + background-color: $blue_d; | |
| 218 | + color: white; | |
| 219 | + } | |
| 220 | + } | |
| 221 | + } | |
| 222 | + .content-2-3{ | |
| 223 | + background-color: $green_bg; | |
| 224 | + border: 0.5px solid $green_bd; | |
| 225 | + a{ | |
| 226 | + color: $green_d; | |
| 227 | + } | |
| 228 | + .point-box{ | |
| 229 | + .circle-img{ | |
| 230 | + border: 1px solid $green_d; | |
| 231 | + i{ | |
| 232 | + left: 10px; | |
| 233 | + color: $green_d; | |
| 234 | + } | |
| 235 | + } | |
| 236 | + } | |
| 237 | + ul.options{ | |
| 238 | + li{ | |
| 239 | + color: $green_line; | |
| 240 | + &.active:after{ | |
| 241 | + background-color: $green_d; | |
| 242 | + } | |
| 243 | + &.active{ | |
| 244 | + color: $green_d; | |
| 245 | + } | |
| 246 | + } | |
| 247 | + li:before{ | |
| 248 | + background-color: $green_s; | |
| 249 | + } | |
| 250 | + } | |
| 251 | + .bottom-box{ | |
| 252 | + background-color: $green_line; | |
| 253 | + &:before{ | |
| 254 | + background-color: $green_s; | |
| 255 | + } | |
| 256 | + a{ | |
| 257 | + color: $green_d; | |
| 258 | + } | |
| 259 | + button{ | |
| 260 | + background-color: $green_d; | |
| 261 | + color: white; | |
| 262 | + } | |
| 263 | + } | |
| 264 | + } | |
| 265 | + .content-2-4{ | |
| 266 | + background-color: $rose_bg; | |
| 267 | + border: 0.5px solid $rose_bd; | |
| 268 | + a{ | |
| 269 | + color: $rose_d; | |
| 270 | + } | |
| 271 | + .point-box{ | |
| 272 | + .circle-img{ | |
| 273 | + border: 1px solid $rose_d; | |
| 274 | + i{ | |
| 275 | + left: 15px; | |
| 276 | + color: $rose_d; | |
| 277 | + } | |
| 278 | + } | |
| 279 | + } | |
| 280 | + ul.options{ | |
| 281 | + li{ | |
| 282 | + color: $rose_line; | |
| 283 | + &.active:after{ | |
| 284 | + background-color: $rose_d; | |
| 285 | + } | |
| 286 | + &.active{ | |
| 287 | + color: $rose_d; | |
| 288 | + } | |
| 289 | + } | |
| 290 | + li:before{ | |
| 291 | + background-color: $rose_s; | |
| 292 | + } | |
| 293 | + } | |
| 294 | + .bottom-box{ | |
| 295 | + background-color: $rose_s; | |
| 296 | + &:before{ | |
| 297 | + background-color: $rose_d; | |
| 298 | + } | |
| 299 | + a{ | |
| 300 | + color: $rose_d; | |
| 301 | + } | |
| 302 | + button{ | |
| 303 | + background-color: $rose_d; | |
| 304 | + color: white; | |
| 305 | + } | |
| 306 | + } | |
| 307 | + } | |
| 308 | + } | |
| 309 | + .index-content-3{ | |
| 310 | + .content-3-1{ | |
| 311 | + .content-box{ | |
| 312 | + margin: 80px 0; | |
| 313 | + border: 1px solid silver; | |
| 167 | 314 | p{ |
| 168 | - display: inline-block; | |
| 315 | + padding: 25px 20px 10px; | |
| 316 | + text-align: center; | |
| 317 | + } | |
| 318 | + button{ | |
| 319 | + margin-bottom: 20px; | |
| 320 | + background-color: $rose_d; | |
| 321 | + color: white; | |
| 322 | + border: none; | |
| 323 | + border-radius: 3px; | |
| 324 | + width: 100px; | |
| 325 | + height: 40px; | |
| 326 | + margin-left: 15px; | |
| 169 | 327 | } |
| 170 | 328 | } |
| 171 | - ul{ | |
| 172 | - float: left; | |
| 173 | - width: 100%; | |
| 329 | + } | |
| 330 | + } | |
| 331 | + .index-content-4{ | |
| 332 | + background-repeat: no-repeat; | |
| 333 | + background-attachment: fixed; | |
| 334 | + .content-4-1{ | |
| 335 | + margin: 0 0; | |
| 336 | + padding: 80px 0; | |
| 337 | + } | |
| 338 | + .wrapper-3{ | |
| 339 | + #wrapper-3-1{ | |
| 340 | + .content-4-hover{ | |
| 341 | + width: 300px; | |
| 342 | + height: 200px; | |
| 343 | + margin: 0 12%; | |
| 344 | + border-radius: 5px; | |
| 345 | + } | |
| 346 | + .slick-dots{ | |
| 347 | + li{ | |
| 348 | + margin: 0; | |
| 349 | + } | |
| 350 | + } | |
| 351 | + .slick-dots button:before{ | |
| 352 | + font-size: 40px; | |
| 353 | + } | |
| 354 | + } | |
| 355 | + } | |
| 356 | + } | |
| 357 | + .index-content-5{ | |
| 358 | + .content-5-1{ | |
| 359 | + .pub_title{ | |
| 360 | + margin-bottom: 30px; | |
| 361 | + h3{ | |
| 362 | + font-size: 18px; | |
| 363 | + } | |
| 364 | + } | |
| 365 | + ul.content-5-icon{ | |
| 366 | + text-align: center; | |
| 367 | + margin: 0 0 30px; | |
| 174 | 368 | padding: 0; |
| 175 | 369 | li{ |
| 176 | - display: block; | |
| 177 | - height: 50px; | |
| 178 | 370 | list-style-type: none; |
| 179 | - line-height: 50px; | |
| 371 | + float: left; | |
| 372 | + margin: 20px 90px; | |
| 373 | + width: 170px; | |
| 374 | + height: 150px; | |
| 375 | + position: relative; | |
| 376 | + background-color: $s_pur_color; | |
| 377 | + img{ | |
| 378 | + position: absolute; | |
| 379 | + text-align: center; | |
| 380 | + top: 55px; | |
| 381 | + left: 20px; | |
| 382 | + opacity: 0.5; | |
| 383 | + } | |
| 384 | + } | |
| 385 | + } | |
| 386 | + .content-5-p{ | |
| 387 | + word-spacing: 1px; | |
| 388 | + color: $font_s_opa; | |
| 389 | + font-size: 15px; | |
| 390 | + } | |
| 391 | + ul.content-5-ul{ | |
| 392 | + padding: 30px 0; | |
| 393 | + margin: 0; | |
| 394 | + li{ | |
| 395 | + list-style-type: none; | |
| 396 | + padding: 20px 0; | |
| 397 | + float: left; | |
| 398 | + position: relative; | |
| 399 | + img{ | |
| 400 | + width: 85px; | |
| 401 | + height: 85px; | |
| 402 | + border-radius: 50%; | |
| 403 | + margin: 0 25px 10px 0; | |
| 404 | + float: left; | |
| 405 | + } | |
| 406 | + span{ | |
| 407 | + font-size: 12px; | |
| 408 | + color: $font_d_opa; | |
| 409 | + display: inline-block; | |
| 410 | + margin-bottom: 10px; | |
| 411 | + } | |
| 412 | + .content-5-a{ | |
| 413 | + a{ | |
| 414 | + color: $font_s_opa; | |
| 415 | + word-spacing: 1px; | |
| 416 | + } | |
| 417 | + } | |
| 418 | + } | |
| 419 | + li:nth-of-type(2)::before,li:nth-of-type(3)::before{ | |
| 420 | + content: ''; | |
| 421 | + position: absolute; | |
| 422 | + top: 0; | |
| 423 | + left: 0; | |
| 424 | + right: 0; | |
| 425 | + width: 100%; | |
| 426 | + height: 1px; | |
| 427 | + background-color: $line_color; | |
| 180 | 428 | } |
| 181 | 429 | } |
| 182 | 430 | } |
| 183 | 431 | } |
| 184 | 432 | } |
| 185 | 433 | |
| 186 | -@media screen and (min-width: 768px){ | |
| 434 | +@media screen and (min-width:768px){ | |
| 435 | + .index-page{ | |
| 436 | + background-image: url('../img/band-2.jpg'); | |
| 437 | + background-attachment: fixed; | |
| 438 | + .index-content{ | |
| 439 | + background-color: white; | |
| 440 | + width: 70%; | |
| 441 | + margin: 30px 15%; | |
| 442 | + } | |
| 443 | + } | |
| 187 | 444 | .index-content{ |
| 188 | 445 | .index-top-box{ |
| 189 | 446 | position: relative; |
| 190 | 447 | .outside-nav{ |
| 191 | - .outside-nav-1{ | |
| 448 | + ul.outside-nav-1{ | |
| 192 | 449 | display: inline-block; |
| 193 | 450 | position: absolute; |
| 194 | - top: -50px; | |
| 451 | + bottom: 20px; | |
| 195 | 452 | right: 20%; |
| 196 | - height: 20px; | |
| 453 | + z-index: 15; | |
| 197 | 454 | li{ |
| 198 | 455 | background-color: $base_color; |
| 199 | 456 | height: 20px; |
| 200 | - height: 20px; | |
| 457 | + line-height: 20px; | |
| 201 | 458 | a{ |
| 202 | 459 | color: beige; |
| 203 | 460 | display: inline-block; |
| 204 | 461 | border: none; |
| 462 | + height: 30px; | |
| 205 | 463 | &:hover{ |
| 206 | 464 | color: $font_s_opa; |
| 207 | 465 | } |
| ... | ... | @@ -210,5 +468,94 @@ |
| 210 | 468 | } |
| 211 | 469 | } |
| 212 | 470 | } |
| 471 | + .index-slick{ | |
| 472 | + .wrapper-1{ | |
| 473 | + #wrapper-1-1{ | |
| 474 | + img{ | |
| 475 | + height: 500px; | |
| 476 | + } | |
| 477 | + } | |
| 478 | + } | |
| 479 | + .wrapper-2{ | |
| 480 | + #wrapper-2-1{ | |
| 481 | + .slick-slide{ | |
| 482 | + position: relative; | |
| 483 | + } | |
| 484 | + .slick-slide::after{ | |
| 485 | + content: ''; | |
| 486 | + position: absolute; | |
| 487 | + right: 0; | |
| 488 | + top: 0; | |
| 489 | + bottom: 0; | |
| 490 | + width: 1px; | |
| 491 | + height: 100%; | |
| 492 | + background-color: $line_color; | |
| 493 | + } | |
| 494 | + .slick-prev{ | |
| 495 | + left: 37%; | |
| 496 | + } | |
| 497 | + .slick-next{ | |
| 498 | + right: 35%; | |
| 499 | + } | |
| 500 | + .slick-dots button::before{ | |
| 501 | + width: 40px; | |
| 502 | + height: 40px; | |
| 503 | + font-size: 40px; | |
| 504 | + margin: 0; | |
| 505 | + padding: 0; | |
| 506 | + } | |
| 507 | + } | |
| 508 | + } | |
| 509 | + } | |
| 510 | + .index-content-2{ | |
| 511 | + padding: 0; | |
| 512 | + .shop-box{ | |
| 513 | + width: 88%; | |
| 514 | + margin: 40px 0 40px 20px; | |
| 515 | + .bottom-box{ | |
| 516 | + a{ | |
| 517 | + display: block; | |
| 518 | + } | |
| 519 | + button{ | |
| 520 | + width: 260px; | |
| 521 | + display: inline-block; | |
| 522 | + } | |
| 523 | + } | |
| 524 | + } | |
| 525 | + } | |
| 526 | + .index-content-4{ | |
| 527 | + width: 100%; | |
| 528 | + height: 500px; | |
| 529 | + .wrapper-3{ | |
| 530 | + #wrapper-3-1{ | |
| 531 | + padding: 80px 40px 0; | |
| 532 | + .content-4-hover{ | |
| 533 | + width: 300px; | |
| 534 | + height: 200px; | |
| 535 | + margin: 0; | |
| 536 | + a{ | |
| 537 | + width: 200px; | |
| 538 | + height: 200px; | |
| 539 | + } | |
| 540 | + } | |
| 541 | + .content-4-hover a:hover{ | |
| 542 | + background-color: rgb(255,255,255); | |
| 543 | + opacity: 0.3; | |
| 544 | + } | |
| 545 | + .slick-arrow{ | |
| 546 | + visibility: hidden; | |
| 547 | + } | |
| 548 | + } | |
| 549 | + } | |
| 550 | + } | |
| 551 | + .index-content-5{ | |
| 552 | + .content-5-1{ | |
| 553 | + ul.content-5-icon{ | |
| 554 | + li{ | |
| 555 | + margin: 0 15px 0 0; | |
| 556 | + } | |
| 557 | + } | |
| 558 | + } | |
| 559 | + } | |
| 213 | 560 | } |
| 214 | 561 | } |
| \ No newline at end of file | ... | ... |
| ... | ... | @@ -9,6 +9,22 @@ $font_d_opa: rgb(177, 177, 177); |
| 9 | 9 | $line_color: rgba(231, 231, 231, 0.8); |
| 10 | 10 | $s_pur_color: rgba(156, 128, 166, 0.06); |
| 11 | 11 | $d_pur_color: rgba(156, 128, 166, 0.1); |
| 12 | +$ora_s_color: rgba(255, 186, 146,0.5); | |
| 13 | +$blue_d: rgb(96, 194, 255); | |
| 14 | +$blue_s: rgb(181, 220, 243); | |
| 15 | +$blue_line: rgb(227, 242, 255); | |
| 16 | +$blue_bg: rgb(242, 249, 255); | |
| 17 | +$blue_bd: rgb(197, 228, 255); | |
| 18 | +$green_d: rgb(119, 172, 119); | |
| 19 | +$green_s: rgb(207, 231, 207); | |
| 20 | +$green_line: rgb(213, 231, 213); | |
| 21 | +$green_bg: rgb(251, 255, 251); | |
| 22 | +$green_bd: rgb(233, 255, 233); | |
| 23 | +$rose_d: rgb(207, 50, 102); | |
| 24 | +$rose_s: rgb(243, 209, 220); | |
| 25 | +$rose_line: rgb(236, 133, 168); | |
| 26 | +$rose_bg: rgb(255, 247, 250); | |
| 27 | +$rose_bd: rgb(255, 230, 239); | |
| 12 | 28 | .pub_title{ |
| 13 | 29 | position: relative; |
| 14 | 30 | h3{ |
| ... | ... | @@ -21,6 +37,99 @@ $d_pur_color: rgba(156, 128, 166, 0.1); |
| 21 | 37 | } |
| 22 | 38 | } |
| 23 | 39 | } |
| 40 | +.shop-box{ | |
| 41 | + margin: 40px 10%; | |
| 42 | + width: 80%; | |
| 43 | + .title{ | |
| 44 | + font-size: 21px; | |
| 45 | + font-weight: bold; | |
| 46 | + margin-top: 20px; | |
| 47 | + } | |
| 48 | + .point-box{ | |
| 49 | + padding-bottom: 10px; | |
| 50 | + width: 100%; | |
| 51 | + float: left; | |
| 52 | + margin-top: 20px; | |
| 53 | + .circle-img{ | |
| 54 | + position: absolute; | |
| 55 | + display: inline-block; | |
| 56 | + right: 70px; | |
| 57 | + width: 60px; | |
| 58 | + height: 60px; | |
| 59 | + border-radius: 50%; | |
| 60 | + margin: 0; | |
| 61 | + background-color: white; | |
| 62 | + i{ | |
| 63 | + font-size: 30px; | |
| 64 | + position: absolute; | |
| 65 | + left: 15px; | |
| 66 | + padding: 0; | |
| 67 | + margin: 0; | |
| 68 | + } | |
| 69 | + } | |
| 70 | + p{ | |
| 71 | + display: inline-block; | |
| 72 | + } | |
| 73 | + } | |
| 74 | + ul.options{ | |
| 75 | + width: 100%; | |
| 76 | + padding: 0; | |
| 77 | + display: inline-block; | |
| 78 | + margin: 0; | |
| 79 | + li{ | |
| 80 | + display: block; | |
| 81 | + height: 50px; | |
| 82 | + list-style-type: none; | |
| 83 | + line-height: 50px; | |
| 84 | + position: relative; | |
| 85 | + padding-left: 40px; | |
| 86 | + &.active:after{ | |
| 87 | + content: ''; | |
| 88 | + position: absolute; | |
| 89 | + border-radius: 80%; | |
| 90 | + z-index: 99; | |
| 91 | + width: 10px; | |
| 92 | + height: 10px; | |
| 93 | + top: 20px; | |
| 94 | + left: 20px; | |
| 95 | + } | |
| 96 | + } | |
| 97 | + li:before{ | |
| 98 | + content: ''; | |
| 99 | + position: absolute; | |
| 100 | + top: 0; | |
| 101 | + left: 0; | |
| 102 | + right: 0; | |
| 103 | + height: 1px; | |
| 104 | + width: 100%; | |
| 105 | + } | |
| 106 | + } | |
| 107 | + .bottom-box{ | |
| 108 | + width: 100%; | |
| 109 | + position: relative; | |
| 110 | + &:before{ | |
| 111 | + content: ''; | |
| 112 | + position: absolute; | |
| 113 | + top:0; | |
| 114 | + left: 0; | |
| 115 | + right: 0; | |
| 116 | + width: 100%; | |
| 117 | + height: 0.5px; | |
| 118 | + } | |
| 119 | + .bottom-body{ | |
| 120 | + margin: 20px 0; | |
| 121 | + position: relative; | |
| 122 | + width: 100%; | |
| 123 | + button{ | |
| 124 | + width: 100%; | |
| 125 | + height: 50px; | |
| 126 | + margin: 15px 0 0; | |
| 127 | + border: none; | |
| 128 | + border-radius: 3px; | |
| 129 | + } | |
| 130 | + } | |
| 131 | + } | |
| 132 | +} | |
| 24 | 133 | .font-bold{ |
| 25 | 134 | font-weight: bold; |
| 26 | 135 | } | ... | ... |
Please
register
or
login
to post a comment